Fixed warning in GCC

This commit is contained in:
Benoit Blanchon
2014-10-22 20:51:29 +02:00
parent 7fbc3cb6a6
commit c800948342
2 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,7 @@ namespace ArduinoJson
public:
JsonNode()
: type(JSON_UNDEFINED), next(0)
: next(0), type(JSON_UNDEFINED)
{
}