From: gdr Date: Sat, 10 Feb 2007 23:30:13 +0000 (+0000) Subject: * parser.c (cp_parser_primary_expression): Reformat overly long lines. X-Git-Tag: upstream/4.9.2~50455 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfbfbb4355536bc8ada8f0e5cb730d5acfb67747;p=platform%2Fupstream%2Flinaro-gcc.git * parser.c (cp_parser_primary_expression): Reformat overly long lines. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121805 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5573910..9fcd66a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2007-02-10 Gabriel Dos Reis + + * parser.c (cp_parser_primary_expression): Reformat overly long lines. + 2007-02-10 Richard Henderson , Jakub Jelinek * decl.c (grokvardecl): Don't error if !have_tls. diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 8e130b6..328add2 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -3272,9 +3272,11 @@ cp_parser_primary_expression (cp_parser *parser, /* Anything else is an error. */ default: - /* ...unless we have an Objective-C++ message or string literal, that is. */ + /* ...unless we have an Objective-C++ message or string literal, + that is. */ if (c_dialect_objc () - && (token->type == CPP_OPEN_SQUARE || token->type == CPP_OBJC_STRING)) + && (token->type == CPP_OPEN_SQUARE + || token->type == CPP_OBJC_STRING)) return cp_parser_objc_expression (parser); cp_parser_error (parser, "expected primary-expression");