]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* parser.c (cp_parser_primary_expression): Reformat overly long lines.
authorGabriel Dos Reis <gdr@integrable-solutions.net>
Sat, 10 Feb 2007 23:30:13 +0000 (23:30 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Sat, 10 Feb 2007 23:30:13 +0000 (23:30 +0000)
From-SVN: r121805

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

index 557391079450ffe95f81465b10dabf561c21de54..9fcd66a732e416bc6fdea1d30a5f7292bb2dbaf1 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 8e130b64cfd4af426990e7da882a77b3e4242f68..328add2959416910f9e71322d9ec95bf80fddbfd 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");