Commit b5d939b7 authored by Milo Yip's avatar Milo Yip

Fix a gcc warning

parent c53a836a
...@@ -17,7 +17,7 @@ using namespace rapidjson; ...@@ -17,7 +17,7 @@ using namespace rapidjson;
template <typename OutputStream> template <typename OutputStream>
class JsonxWriter { class JsonxWriter {
public: public:
JsonxWriter(OutputStream& os) : os_(os), level_(0), hasName_(false) { JsonxWriter(OutputStream& os) : os_(os), name_(), level_(0), hasName_(false) {
} }
bool Null() { bool Null() {
......
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