File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
include/ydb-cpp-sdk/client/value Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1- cdad0889aa2f47f9cde997deae6f682eced20873
1+ 2378fba9f99efb178b5c8a2c986bb6a4b754402b
Original file line number Diff line number Diff line change @@ -530,7 +530,8 @@ class TValueBuilderBase : public TMoveOnly {
530530protected:
531531 TValueBuilderBase (TValueBuilderBase&&);
532532
533- TValueBuilderBase (google::protobuf::Arena* arena = nullptr );
533+ TValueBuilderBase ();
534+ explicit TValueBuilderBase (google::protobuf::Arena* arena);
534535
535536 TValueBuilderBase (const TType& type);
536537
Original file line number Diff line number Diff line change @@ -2842,6 +2842,10 @@ TValueBuilderBase<TDerived>::TValueBuilderBase(TValueBuilderBase&&) = default;
28422842template <typename TDerived>
28432843TValueBuilderBase<TDerived>::~TValueBuilderBase () = default ;
28442844
2845+ template <typename TDerived>
2846+ TValueBuilderBase<TDerived>::TValueBuilderBase()
2847+ : Impl_(new TValueBuilderImpl()) {}
2848+
28452849template <typename TDerived>
28462850TValueBuilderBase<TDerived>::TValueBuilderBase(google::protobuf::Arena* arena)
28472851 : Impl_(new TValueBuilderImpl(arena)) {}
You can’t perform that action at this time.
0 commit comments