| 12 | |
| 13 | template <typename T> |
| 14 | void checkReference(T& expected) { |
| 15 | JsonVariant variant = expected; |
| 16 | REQUIRE(expected == variant.as<T&>()); |
| 17 | } |
| 18 | |
| 19 | template <typename T> |
| 20 | void checkNumericType() { |
nothing calls this directly
no outgoing calls
no test coverage detected