We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f36421 commit 45e57a5Copy full SHA for 45e57a5
clang/lib/Lex/MacroInfo.cpp
@@ -34,11 +34,11 @@ namespace {
34
// and 4 byte SourceLocation.
35
template <int> class MacroInfoSizeChecker {
36
public:
37
- constexpr static bool AsExpected = true;
+ [[maybe_unused]] constexpr static bool AsExpected = true;
38
};
39
template <> class MacroInfoSizeChecker<8> {
40
41
- constexpr static bool AsExpected =
+ [[maybe_unused]] constexpr static bool AsExpected =
42
sizeof(MacroInfo) == (32 + sizeof(SourceLocation) * 2);
43
44
0 commit comments