From 94d05da2bc0f2ed910508a679b3297317b6e1a9f Mon Sep 17 00:00:00 2001 From: "miloyip@gmail.com" Date: Wed, 14 Nov 2012 02:58:16 +0000 Subject: [PATCH] =?UTF-8?q?Fixed=20Issue=2028:=09Parameter=20=E2=80=98inAr?= =?UTF-8?q?ray=E2=80=99=20shadows=20a=20member=20of=20'Level'=20in=20write?= =?UTF-8?q?r.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://rapidjson.googlecode.com/svn/trunk@78 c5894555-1306-4e8d-425f-1f6f381ee07c --- include/rapidjson/writer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rapidjson/writer.h b/include/rapidjson/writer.h index 9fde3e1..4f3aedc 100644 --- a/include/rapidjson/writer.h +++ b/include/rapidjson/writer.h @@ -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 };