| 866 | struct nlohmann_impl : public any_impl |
| 867 | { |
| 868 | nlohmann_impl(bool with_file_io) |
| 869 | : any_impl( |
| 870 | "nlohmann", |
| 871 | "", |
| 872 | false, |
| 873 | false, |
| 874 | with_file_io, |
| 875 | parse_options() ) |
| 876 | {} |
| 877 | |
| 878 | clock_type::duration |
| 879 | parse_string(file_item const& fi, std::size_t repeat) const override |
nothing calls this directly
no test coverage detected