| 150 | template <typename TDerived> |
| 151 | template <typename T, enable_if_t<is_same<T, JsonArray>::value, int>> |
| 152 | inline JsonArray VariantRefBase<TDerived>::to() const { |
| 153 | return JsonArray( |
| 154 | VariantData::toArray(getOrCreateData(), getResourceManager()), |
| 155 | getResourceManager()); |
| 156 | } |
| 157 | |
| 158 | template <typename TDerived> |
| 159 | template <typename T, enable_if_t<is_same<T, JsonObject>::value, int>> |
nothing calls this directly
no test coverage detected