Skip to content

Commit 19d7537

Browse files
committed
clang-tidy: Suppress performance-enum-size check warning
See: https://clang.llvm.org/extra/clang-tidy/checks/performance/enum-size.html
1 parent 3418ad2 commit 19d7537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/mp/test/foo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct FooStruct
2121
std::vector<bool> vbool;
2222
};
2323

24-
enum class FooEnum : int { ONE = 1, TWO = 2, };
24+
enum class FooEnum : int { ONE = 1, TWO = 2, }; // NOLINT(performance-enum-size)
2525

2626
struct FooCustom
2727
{

0 commit comments

Comments
 (0)