From 097552faa9195832c07dd69bbcc0c95242674386 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Sat, 10 Feb 2007 23:30:13 +0000 Subject: [PATCH] * parser.c (cp_parser_primary_expression): Reformat overly long lines. From-SVN: r121805 --- 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 55739107945..9fcd66a732e 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 8e130b64cfd..328add29594 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.30.2