We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6147e59 commit eb9a949Copy full SHA for eb9a949
include/json/value.h
@@ -885,6 +885,8 @@ class JSON_API ValueIterator : public ValueIteratorBase<_Value> {
885
886
typedef detail::Path<detail::Value<>> Path; // class Json::Path
887
typedef detail::PathArgument<detail::Value<>> PathArgument; // class Json::PathArgument
888
+template<class _Alloc, class _String> // class Json::Value_ type with accessible allocator
889
+ using Value_ = Json::detail::Value<_Alloc, _String>;
890
typedef detail::Value<> Value; // class Json::Value
891
typedef detail::ValueConstIterator<detail::Value<>> ValueConstIterator; // class Json::ValueConstIterator
892
typedef detail::ValueIterator<detail::Value<>> ValueIterator; // class Json::ValueIterator
0 commit comments