| 2550 | }; |
| 2551 | template<typename value_type, typename boolean_type> |
| 2552 | struct is_valid_json_boolean { |
| 2553 | static constexpr auto value = std::is_convertible<boolean_type, bool>::value && |
| 2554 | std::is_constructible<value_type, boolean_type>::value; |
| 2555 | }; |
| 2556 | |
| 2557 | template<typename value_type, typename object_type, typename array_type, typename string_type, |
| 2558 | typename number_type, typename integer_type, typename boolean_type> |
nothing calls this directly
no outgoing calls
no test coverage detected