Fix bad indentation due to changes in whitespace between patch creation and patch...
authorWolfgang Bangerth <bangerth@gcc.gnu.org>
Mon, 30 Jun 2003 18:55:06 +0000 (12:55 -0600)
committerWolfgang Bangerth <bangerth@gcc.gnu.org>
Mon, 30 Jun 2003 18:55:06 +0000 (12:55 -0600)
From-SVN: r68722

gcc/cp/parser.c

index 46351153bf16ca2ad6e50955442b8a2da4ddf52b..173a62f7cff4f6418c017e75093889144d3c7a34 100644 (file)
@@ -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);