From 0c3037dfc555887fc7b63069d5bff57e04759f06 Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Fri, 29 Jul 2022 10:18:54 +0000 Subject: [PATCH] [libc] Fix prototype_test_gen --- libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp b/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp index 983f76f..cd1e61b 100644 --- a/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp +++ b/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp @@ -81,7 +81,7 @@ bool TestGeneratorMain(llvm::raw_ostream &OS, llvm::RecordKeeper &records) { if (i < size - 1) OS << ", "; } - OS << "), decltype(" << entrypoint << ")>::Value, "; + OS << "), decltype(" << entrypoint << ")>, "; OS << '"' << entrypoint << " prototype in TableGen does not match public header" << '"'; OS << ");\n"; -- 2.7.4