* parser.c (cp_parser_primary_expression): Reformat overly long lines.
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 10 Feb 2007 23:30:13 +0000 (23:30 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 10 Feb 2007 23:30:13 +0000 (23:30 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121805 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/parser.c

index 5573910..9fcd66a 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
+
+       * parser.c (cp_parser_primary_expression): Reformat overly long lines.
+
 2007-02-10  Richard Henderson  <rth@redhat.com>, Jakub Jelinek  <jakub@redhat.com>
 
        * decl.c (grokvardecl): Don't error if !have_tls.
index 8e130b6..328add2 100644 (file)
@@ -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");