Uh, there is another one: ../../gcc-4.7/gcc/cp/parser.c: In function 'tree_node* cp_parser_init_declarator(cp_parser*, cp_decl_specifier_seq*, VEC_deferred_access_check_gc*, bool, bool, int, bool*, tree_node**)': ../../gcc-4.7/gcc/cp/parser.c:14612:19: error: converting 'false' to pointer type 'tree' [-Werror=conversion-null]
2011-05-02 Dmitry Gorbachev <d.g.gorbac...@gmail.com> * parser.c (cp_parser_init_declarator): Replace false by NULL. --- gcc/cp/parser.c +++ gcc/cp/parser.c @@ -14609,7 +14609,7 @@ if (pushed_scope) { pop_scope (pushed_scope); - pushed_scope = false; + pushed_scope = NULL; } decl = grokfield (declarator, decl_specifiers, initializer, !is_non_constant_init,