| 236 | object::const_reverse_iterator>::value)); |
| 237 | |
| 238 | static |
| 239 | void |
| 240 | check( |
| 241 | object const& o, |
| 242 | string_view s, |
| 243 | std::size_t capacity = 0) |
| 244 | { |
| 245 | BOOST_TEST( |
| 246 | parse(serialize(o)).as_object() == |
| 247 | parse(s).as_object()); |
| 248 | if(capacity != 0) |
| 249 | BOOST_TEST(o.capacity() == capacity); |
| 250 | } |
| 251 | |
| 252 | static |
| 253 | void |
nothing calls this directly
no test coverage detected