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
Writer& Null() { Prefix(kNullType);
WriteNull(); return *this; }
Writer& Bool(bool b) { Prefix(b ? kTrueType : kFalseType);
WriteBool(b); return *this; }
These two are causing compiletime errors (GCC 4.7.2)
Renaming all occurences of "Bool" and "Null" solves this problem.
Original issue reported on code.google.com by [email protected] on 4 Jan 2014 at 11:07
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 4 Jan 2014 at 11:07The text was updated successfully, but these errors were encountered: