aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/parser.c
diff options
context:
space:
mode:
authorWolfgang Bangerth <bangerth@gcc.gnu.org>2003-06-30 12:55:06 -0600
committerWolfgang Bangerth <bangerth@gcc.gnu.org>2003-06-30 12:55:06 -0600
commit813e059114a1a18b4e352d15bd7f1ccc8c431922 (patch)
tree52f8e15ed06dd60b27bff78781b49dc365a6492c /gcc/cp/parser.c
parent984e085f58568252524f3fc7bdf03086762a0c39 (diff)
downloadgcc-813e059114a1a18b4e352d15bd7f1ccc8c431922.zip
gcc-813e059114a1a18b4e352d15bd7f1ccc8c431922.tar.gz
gcc-813e059114a1a18b4e352d15bd7f1ccc8c431922.tar.bz2
Fix bad indentation due to changes in whitespace between patch creation and patch application.
From-SVN: r68722
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r--gcc/cp/parser.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c
index 4635115..173a62f 100644
--- a/gcc/cp/parser.c
+++ b/gcc/cp/parser.c
@@ -2783,16 +2783,16 @@ cp_parser_primary_expression (cp_parser *parser,
&& INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (decl)))
/* Const variables or static data members of integral
or enumeration types initialized with constant
- expressions (or dependent expressions - in this case
- the check will be done at instantiation time). */
+ expressions (or dependent expressions - in this case
+ the check will be done at instantiation time). */
&& !(TREE_CODE (decl) == VAR_DECL
&& INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (decl))
&& DECL_INITIAL (decl)
- && (TREE_CONSTANT (DECL_INITIAL (decl))
- || type_dependent_expression_p
- (DECL_INITIAL (decl))
- || value_dependent_expression_p
- (DECL_INITIAL (decl)))))
+ && (TREE_CONSTANT (DECL_INITIAL (decl))
+ || type_dependent_expression_p
+ (DECL_INITIAL (decl))
+ || value_dependent_expression_p
+ (DECL_INITIAL (decl)))))
{
if (!parser->allow_non_constant_expression_p)
return cp_parser_non_constant_id_expression (decl);