| 136 | template <typename TDerived> |
| 137 | template <typename TConverter, typename T> |
| 138 | inline bool VariantRefBase<TDerived>::doSet(const T& value, false_type) const { |
| 139 | TConverter::toJson(value, getOrCreateVariant()); |
| 140 | auto resources = getResourceManager(); |
| 141 | return resources && !resources->overflowed(); |
| 142 | } |
| 143 | |
| 144 | template <typename TDerived> |
| 145 | template <typename TConverter, typename T> |
nothing calls this directly
no test coverage detected