Skip to content
Snippets Groups Projects

F cpp to string

4 files
+ 52
10
Compare changes
  • Side-by-side
  • Inline

Files

+ 0
6
@@ -45,12 +45,6 @@ auto get_arena() -> Arena *;
template <typename P> class ProtoMessageWrapper {
public:
virtual ~ProtoMessageWrapper() = 0;
ProtoMessageWrapper(const ProtoMessageWrapper<P> &other) = default;
inline auto CopyFrom(const ProtoMessageWrapper<P> &other) noexcept -> StatusCode {
this->wrapped->CopyFrom(*other.wrapped);
return StatusCode::SUCCESS;
}
/**
* Return a json representation of this object.
*/
Loading