Skip to content

Commit 782c524

Browse files
author
blep
committed
Removed experimental notification on iterators, and added experimental status for allocator (to be removed)
git-svn-id: https://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp@133 1f120ed1-78a5-a849-adca-83f0a9e25bb6
1 parent 8659710 commit 782c524

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The json-cpp library and this documentation are in Public Domain.

include/json/value.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ namespace Json {
513513
Args args_;
514514
};
515515

516-
/** \brief Allocator to customize member name and string value memory management done by Value.
516+
/** \brief Experimental do not use: Allocator to customize member name and string value memory management done by Value.
517517
*
518518
* - makeMemberName() and releaseMemberName() are called to respectively duplicate and
519519
* free an Json::objectValue member name.
@@ -785,7 +785,7 @@ namespace Json {
785785
PageIndex pageCount_;
786786
};
787787

788-
/** \brief Allocator to customize Value internal array.
788+
/** \brief Experimental: do not use. Allocator to customize Value internal array.
789789
* Below is an example of a simple implementation (actual implementation use
790790
* memory pool).
791791
\code
@@ -873,7 +873,7 @@ class DefaultValueArrayAllocator : public ValueArrayAllocator
873873
#endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP
874874

875875

876-
/** \brief Experimental and untested: base class for Value iterators.
876+
/** \brief base class for Value iterators.
877877
*
878878
*/
879879
class ValueIteratorBase
@@ -943,7 +943,7 @@ class DefaultValueArrayAllocator : public ValueArrayAllocator
943943
#endif
944944
};
945945

946-
/** \brief Experimental and untested: const iterator for object and array value.
946+
/** \brief const iterator for object and array value.
947947
*
948948
*/
949949
class ValueConstIterator : public ValueIteratorBase
@@ -1002,7 +1002,7 @@ class DefaultValueArrayAllocator : public ValueArrayAllocator
10021002
};
10031003

10041004

1005-
/** \brief Experimental and untested: iterator for object and array value.
1005+
/** \brief Iterator for object and array value.
10061006
*/
10071007
class ValueIterator : public ValueIteratorBase
10081008
{

0 commit comments

Comments
 (0)