Author: Timm Bäder Date: 2023-04-03T17:12:05+02:00 New Revision: 82facc2b2462441a83ca35d2d6ef1ab28244a1b3
URL: https://github.com/llvm/llvm-project/commit/82facc2b2462441a83ca35d2d6ef1ab28244a1b3 DIFF: https://github.com/llvm/llvm-project/commit/82facc2b2462441a83ca35d2d6ef1ab28244a1b3.diff LOG: [clang][Interp] Add missing static_assert message This broke builders, e.g: https://lab.llvm.org/buildbot/#builders/139/builds/38457 Added: Modified: clang/test/AST/Interp/functions.cpp Removed: ################################################################################ diff --git a/clang/test/AST/Interp/functions.cpp b/clang/test/AST/Interp/functions.cpp index 4b81e7d6be3b..06edcdeffa70 100644 --- a/clang/test/AST/Interp/functions.cpp +++ b/clang/test/AST/Interp/functions.cpp @@ -10,7 +10,7 @@ static_assert(gimme5() == 5, ""); template<typename T> constexpr T identity(T t) { - static_assert(true); + static_assert(true, ""); return t; } static_assert(identity(true), ""); _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits