Fixed build error in Arduino IDE

This commit is contained in:
Benoit Blanchon
2014-08-26 12:03:50 +02:00
parent 48018bd6e6
commit b3b70b78cf

View File

@ -37,8 +37,8 @@ namespace ArduinoJson
size_t writeTabs();
const int MAX_LEVEL = 15; // because it's only 4 bits
const int MAX_TAB_SIZE = 7; // because it's only 3 bits
static const int MAX_LEVEL = 15; // because it's only 4 bits
static const int MAX_TAB_SIZE = 7; // because it's only 3 bits
};
}
}