From dfbfbb4355536bc8ada8f0e5cb730d5acfb67747 Mon Sep 17 00:00:00 2001 From: gdr Date: Sat, 10 Feb 2007 23:30:13 +0000 Subject: [PATCH] * 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 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/parser.c | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 557391079450..9fcd66a732e4 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 8e130b64cfd4..328add295941 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"); -- 2.47.3