In c++1z, static_assert is not required to have a StringLiteral message, where previously it was required. Update the AST Reader to be able to handle a null StringLiteral. llvm-svn: 281286
4 lines
38 B
C++
4 lines
38 B
C++
class S {
|
|
static_assert(4 == 4);
|
|
};
|