Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2016-02-08 20:09:43 +0300
committerMilo Yip <miloyip@gmail.com>2016-02-08 20:09:43 +0300
commitb5d939b71ba7e77abe92bca4ac12d9eb2996a249 (patch)
treeb2b1b75445921aca5bbef18017093f395662f0a5 /example/jsonx
parentc53a836a3c972dda987371127f0d7bbd4d14995a (diff)
Fix a gcc warning
Diffstat (limited to 'example/jsonx')
-rw-r--r--example/jsonx/jsonx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jsonx/jsonx.cpp b/example/jsonx/jsonx.cpp
index b6f30102..2fb6c9f2 100644
--- a/example/jsonx/jsonx.cpp
+++ b/example/jsonx/jsonx.cpp
@@ -17,7 +17,7 @@ using namespace rapidjson;
template <typename OutputStream>
class JsonxWriter {
public:
- JsonxWriter(OutputStream& os) : os_(os), level_(0), hasName_(false) {
+ JsonxWriter(OutputStream& os) : os_(os), name_(), level_(0), hasName_(false) {
}
bool Null() {