MCPcopy Create free account
hub / github.com/apache/brpc / Convert

Class Convert

test/optional_unittest.cpp:112–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110struct Obj {};
111
112struct Convert {
113 Convert()
114 :default_ctor(false), move_ctor(false) { }
115 explicit Convert(const Obj&)
116 :default_ctor(true), move_ctor(false) { }
117 explicit Convert(Obj&&)
118 :default_ctor(true), move_ctor(true) { }
119
120 bool default_ctor;
121 bool move_ctor;
122};
123
124struct ConvertFromOptional {
125 ConvertFromOptional()

Callers 2

_PbFieldToJsonMethod · 0.85
CharToDigitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected