Modify the original source file, not the result of the re2c tool

This commit is contained in:
Alexandre Hamez 2015-06-02 12:47:16 +02:00
parent c817e0ee80
commit d45fa40575
2 changed files with 2 additions and 2 deletions

View File

@ -300,7 +300,7 @@ class basic_json
*/ */
friend bool operator<(const value_t lhs, const value_t rhs) friend bool operator<(const value_t lhs, const value_t rhs)
{ {
static constexpr std::array<uint8_t, 7> order = {{ std::array<uint8_t, 7> order = {{
0, // null 0, // null
3, // object 3, // object
4, // array 4, // array

View File

@ -300,7 +300,7 @@ class basic_json
*/ */
friend bool operator<(const value_t lhs, const value_t rhs) friend bool operator<(const value_t lhs, const value_t rhs)
{ {
std::array<uint8_t, 7> order = {{ static constexpr std::array<uint8_t, 7> order = {{
0, // null 0, // null
3, // object 3, // object
4, // array 4, // array