You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. compile with gcc (eg 4.4.3) with -pedantic
What version of the product are you using? On what operating system?
0.11
Please provide any additional information below.
In rapidjson.h, there is one comma after the final field in the enum 'Type'.
This is not allowed in C++98:
http://code.google.com/p/rapidjson/source/browse/trunk/include/rapidjson/rapidjs
on.h?r=131#251
Solution:
kNumberType = 6, //!< number
should be changed to
kNumberType = 6 //!< number
Original issue reported on code.google.com by lundb...@gmail.com on 7 Dec 2012 at 9:47
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
lundb...@gmail.com
on 7 Dec 2012 at 9:47The text was updated successfully, but these errors were encountered: