From b5d939b71ba7e77abe92bca4ac12d9eb2996a249 Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Tue, 9 Feb 2016 01:09:43 +0800 Subject: [PATCH] Fix a gcc warning --- example/jsonx/jsonx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/jsonx/jsonx.cpp b/example/jsonx/jsonx.cpp index b6f3010..2fb6c9f 100644 --- a/example/jsonx/jsonx.cpp +++ b/example/jsonx/jsonx.cpp @@ -17,7 +17,7 @@ using namespace rapidjson; template class JsonxWriter { public: - JsonxWriter(OutputStream& os) : os_(os), level_(0), hasName_(false) { + JsonxWriter(OutputStream& os) : os_(os), name_(), level_(0), hasName_(false) { } bool Null() {