MCPcopy Create free account
hub / github.com/boostorg/json / options_maker

Class options_maker

test/basic_parser.cpp:172–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170}
171
172class options_maker
173{
174private:
175 std::vector<parse_options>& result_;
176
177public:
178 options_maker(std::vector<parse_options>& result)
179 : result_(result)
180 {}
181
182 template< class Bools >
183 void operator()(Bools b) const
184 {
185 result_.push_back( make_options(b) );
186 }
187};
188
189} // (anon)
190

Callers 1

testParseVectorsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected