]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/cp/tree.cc
Restore build with GCC 4.8 to GCC 5
[gcc.git] / gcc / cp / tree.cc
index e0b9d512adccb3142d2a3df0e199927db0afc096..da4d5c51f074cd602387c71440f4265e464cfbae 100644 (file)
@@ -5098,7 +5098,7 @@ static const attribute_spec cxx_gnu_attributes[] =
 
 const scoped_attribute_specs cxx_gnu_attribute_table =
 {
-  "gnu", cxx_gnu_attributes
+  "gnu", { cxx_gnu_attributes }
 };
 
 /* Table of C++ standard attributes.  */
@@ -5126,7 +5126,10 @@ static const attribute_spec std_attributes[] =
     handle_contract_attribute, NULL }
 };
 
-const scoped_attribute_specs std_attribute_table = { nullptr, std_attributes };
+const scoped_attribute_specs std_attribute_table =
+{
+  nullptr, { std_attributes }
+};
 
 /* Handle an "init_priority" attribute; arguments as in
    struct attribute_spec.handler.  */
This page took 0.025456 seconds and 5 git commands to generate.