diff options
author | alexvru <alexvru@ydb.tech> | 2023-06-26 21:02:45 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2023-06-26 21:02:45 +0300 |
commit | 1bda2782bbd40864d397001bb424b02281a336c2 (patch) | |
tree | bc86440163162900f02e834bebacde794925fcfd /library/cpp/actors/util/rc_buf.cpp | |
parent | c9f2529bb452d88806592b231006347470252f5a (diff) | |
download | ydb-1bda2782bbd40864d397001bb424b02281a336c2.tar.gz |
Support TEvVGet in separate rope
Diffstat (limited to 'library/cpp/actors/util/rc_buf.cpp')
-rw-r--r-- | library/cpp/actors/util/rc_buf.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/cpp/actors/util/rc_buf.cpp b/library/cpp/actors/util/rc_buf.cpp new file mode 100644 index 0000000000..946c9846ee --- /dev/null +++ b/library/cpp/actors/util/rc_buf.cpp @@ -0,0 +1,6 @@ +#include "rc_buf.h" + +template<> +void Out<TRcBuf>(IOutputStream& s, const TRcBuf& x) { + s.Write(TStringBuf(x)); +} |