From 82facc2b2462441a83ca35d2d6ef1ab28244a1b3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Mon, 3 Apr 2023 17:11:31 +0200 Subject: [PATCH] [clang][Interp] Add missing static_assert message This broke builders, e.g: https://lab.llvm.org/buildbot/#builders/139/builds/38457 --- clang/test/AST/Interp/functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/AST/Interp/functions.cpp b/clang/test/AST/Interp/functions.cpp index 4b81e7d..06edcde 100644 --- a/clang/test/AST/Interp/functions.cpp +++ b/clang/test/AST/Interp/functions.cpp @@ -10,7 +10,7 @@ static_assert(gimme5() == 5, ""); template constexpr T identity(T t) { - static_assert(true); + static_assert(true, ""); return t; } static_assert(identity(true), ""); -- 2.7.4