* c-warn.c (match_case_to_enum_1): Don't warn about enums with no
enumerators.
From-SVN: r248303
+2017-05-19 Jason Merrill <jason@redhat.com>
+
+ * c-warn.c (match_case_to_enum_1): Don't warn about enums with no
+ enumerators.
+
2017-05-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
* c-format.c (locus): Move out of function scope,
static void
match_case_to_enum_1 (tree key, tree type, tree label)
{
+ /* Avoid warning about enums that have no enumerators. */
+ if (TYPE_VALUES (type) == NULL_TREE)
+ return;
+
char buf[WIDE_INT_PRINT_BUFFER_SIZE];
if (tree_fits_uhwi_p (key))
--- /dev/null
+// { dg-options "-std=c++17 -Wall" }
+
+#include <cstddef>
+
+bool white_space(std::byte x) {
+ switch (x) {
+ case std::byte{' '}: case std::byte{'\t'}: case std::byte{'\v'}:
+ case std::byte{'\f'}: case std::byte{'\n'}:
+ return true;
+ default:
+ return false;
+ }
+}