Fix a gcc warning

This commit is contained in:
Milo Yip 2016-02-09 01:09:43 +08:00
parent c53a836a3c
commit b5d939b71b

View File

@ -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() {