blob: affb7b3d1e7290355260a353182fe1fb707a46eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "strbuf.h"
#include <util/stream/output.h>
#include <ostream>
std::ostream& operator<<(std::ostream& os, TStringBuf buf) {
os.write(buf.data(), buf.size());
return os;
}
|