From b3e5c4b8f267d11b23f99df7d658150eba2eb3f2 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Mon, 29 Nov 2021 18:16:29 -0330 Subject: [PATCH] Eliminate warning about enum's in clang. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 205af0579..829083687 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,8 @@ ifdef CLANG_WARNINGS -Wno-switch-enum -Wno-conversion -Wno-covered-switch-default \ -Wno-inconsistent-missing-destructor-override -Wno-float-equal \ -Wno-exit-time-destructors -Wno-global-constructors -Wno-weak-vtables \ - -Wno-four-char-constants -Wno-padded -Wno-reserved-identifier + -Wno-four-char-constants -Wno-padded -Wno-reserved-identifier \ + -Wno-duplicate-enum CXXFLAGS+= $(EXTRA_WARN) CFLAGS+= $(EXTRA_WARN)