Fixed default constructor initialization.

This commit is contained in:
Baptiste Lepilleur 2009-11-18 17:12:24 +00:00
parent eda47b61b5
commit 5d0ed235c6

View File

@ -11,6 +11,11 @@
// //////////////////////////////////////////////////////////////////
ValueIteratorBase::ValueIteratorBase()
#ifndef JSON_VALUE_USE_INTERNAL_MAP
: current_( 0 )
#else
# error fix me // Need to handle uninitialized iterator comparison for experimental maps
#endif
{
}