clang-tidy: Suppress macro to enum conversion warnings
clang-tidy 18.1.1 in Fedora 40 complains about every #define of an integral value, suggesting it be converted to an enum. Although that's certainly possible, it's of dubious value and results in some awkward arrangements on out codebase. Suppress it globally. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
29bd08ff0f
commit
80f7ff2996
1 changed files with 8 additions and 1 deletions
9
Makefile
9
Makefile
|
@ -257,6 +257,12 @@ docs: README.md
|
||||||
# we use. That sounds nice, but means it will often want a OS
|
# we use. That sounds nice, but means it will often want a OS
|
||||||
# specific header instead of a mostly standard one, such as
|
# specific header instead of a mostly standard one, such as
|
||||||
# <linux/limits.h> instead of <limits.h>.
|
# <linux/limits.h> instead of <limits.h>.
|
||||||
|
#
|
||||||
|
# - cppcoreguidelines-macro-to-enum
|
||||||
|
# Want to replace all #defines of integers with enums. Kind of
|
||||||
|
# makes sense when those defines form an enum-like set, but
|
||||||
|
# weird for cases like standalone constants, and causes other
|
||||||
|
# awkwardness for a bunch of cases we use
|
||||||
|
|
||||||
clang-tidy: $(SRCS) $(HEADERS)
|
clang-tidy: $(SRCS) $(HEADERS)
|
||||||
clang-tidy -checks=*,-modernize-*,\
|
clang-tidy -checks=*,-modernize-*,\
|
||||||
|
@ -283,7 +289,8 @@ clang-tidy: $(SRCS) $(HEADERS)
|
||||||
-altera-struct-pack-align,\
|
-altera-struct-pack-align,\
|
||||||
-concurrency-mt-unsafe,\
|
-concurrency-mt-unsafe,\
|
||||||
-readability-identifier-length,\
|
-readability-identifier-length,\
|
||||||
-misc-include-cleaner \
|
-misc-include-cleaner,\
|
||||||
|
-cppcoreguidelines-macro-to-enum \
|
||||||
-config='{CheckOptions: [{key: bugprone-suspicious-string-compare.WarnOnImplicitComparison, value: "false"}]}' \
|
-config='{CheckOptions: [{key: bugprone-suspicious-string-compare.WarnOnImplicitComparison, value: "false"}]}' \
|
||||||
--warnings-as-errors=* $(SRCS) -- $(filter-out -pie,$(FLAGS) $(CFLAGS) $(CPPFLAGS)) -DCLANG_TIDY_58992
|
--warnings-as-errors=* $(SRCS) -- $(filter-out -pie,$(FLAGS) $(CFLAGS) $(CPPFLAGS)) -DCLANG_TIDY_58992
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue