aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/util/rc_buf.cpp
diff options
context:
space:
mode:
authoralexvru <alexvru@ydb.tech>2023-06-26 21:02:45 +0300
committeralexvru <alexvru@ydb.tech>2023-06-26 21:02:45 +0300
commit1bda2782bbd40864d397001bb424b02281a336c2 (patch)
treebc86440163162900f02e834bebacde794925fcfd /library/cpp/actors/util/rc_buf.cpp
parentc9f2529bb452d88806592b231006347470252f5a (diff)
downloadydb-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.cpp6
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));
+}