blob: 4a7269ff4a9f005abc3914ae1334a3f420f065b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "ztstrbuf.h"
#include <util/stream/output.h>
template <>
void Out<TZtStringBuf>(IOutputStream& os, const TZtStringBuf& sb) {
os << static_cast<const TStringBuf&>(sb);
}
|