Skip to content

Commit a97ff2d

Browse files
committed
[clang][Interp] Add missing static_assert message
This breaks builders: https://lab.llvm.org/buildbot/#/builders/139/builds/58960
1 parent 61c7a69 commit a97ff2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/AST/Interp/literals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ namespace PointerComparison {
216216
}
217217

218218
namespace SizeOf {
219-
static_assert(alignof(char&) == 1);
219+
static_assert(alignof(char&) == 1, "");
220220

221221
constexpr int soint = sizeof(int);
222222
constexpr int souint = sizeof(unsigned int);

0 commit comments

Comments
 (0)