Commit 94d05da2 authored by miloyip@gmail.com's avatar miloyip@gmail.com

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
parent 790b7f12
......@@ -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
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment