Wrap array in ctor with braces.
authorMartin Liska <mliska@suse.cz>
Wed, 4 Mar 2020 08:31:05 +0000 (09:31 +0100)
committerMartin Liska <mliska@suse.cz>
Wed, 4 Mar 2020 08:31:05 +0000 (09:31 +0100)
* method.c: Wrap array in ctor with braces in order
to silent clang warnings.

gcc/cp/ChangeLog
gcc/cp/method.c

index 590c898866632aea3614ea0e843b76c3ec1e03aa..34ff88ee033d9aa2badd9108dd51b72b97893117 100644 (file)
@@ -1,3 +1,8 @@
+2020-03-04  Martin Liska  <mliska@suse.cz>
+
+       * method.c: Wrap array in ctor with braces in order
+       to silent clang warnings.
+
 2020-03-03  Jason Merrill  <jason@redhat.com>
            Marek Polacek  <polacek@redhat.com>
 
index 790d5704092aa534c009a3a6f29edb603eec254e..f10cfecaae8b10fde653a651d3ebf4999303f722 100644 (file)
@@ -900,9 +900,9 @@ struct comp_cat_info_t
 };
 static const comp_cat_info_t comp_cat_info[cc_last]
 = {
-   { "partial_ordering", "equivalent", "greater", "less", "unordered" },
-   { "weak_ordering", "equivalent", "greater", "less" },
-   { "strong_ordering", "equal", "greater", "less" }
+   { "partial_ordering", { "equivalent", "greater", "less", "unordered" } },
+   { "weak_ordering", { "equivalent", "greater", "less" } },
+   { "strong_ordering", { "equal", "greater", "less" } }
 };
 
 /* A cache of the category types to speed repeated lookups.  */