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 charlesd...@gmail.com on 4 Jan 2014 at 11:07
Original issue reported on code.google.com by
charlesd...@gmail.com
on 4 Jan 2014 at 11:07