Fixed Issue 28: Parameter ‘inArray’ shadows a member of 'Level' in writer.h

git-svn-id: https://rapidjson.googlecode.com/svn/trunk@78 c5894555-1306-4e8d-425f-1f6f381ee07c
This commit is contained in:
miloyip@gmail.com 2012-11-14 02:58:16 +00:00
parent 790b7f127c
commit 94d05da2bc

View File

@ -97,7 +97,7 @@ public:
protected:
//! Information for each nested level
struct Level {
Level(bool inArray) : inArray(inArray), valueCount(0) {}
Level(bool inArray_) : inArray(inArray_), valueCount(0) {}
bool inArray; //!< true if in array, otherwise in object
size_t valueCount; //!< number of values in this level
};