blob: 2845c1e2209021b950b0280b3ef19a1b2aa48a7c (
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;
}
|