| 449 | } |
| 450 | |
| 451 | static |
| 452 | void |
| 453 | grind_uint64(string_view s, uint64_t v) |
| 454 | { |
| 455 | grind(s, |
| 456 | [v](value const& jv, const parse_options&) |
| 457 | { |
| 458 | if(! BOOST_TEST(jv.is_uint64())) |
| 459 | return; |
| 460 | BOOST_TEST(jv.get_uint64() == v); |
| 461 | }); |
| 462 | } |
| 463 | |
| 464 | static |
| 465 | void |
nothing calls this directly
no test coverage detected