From 0504688ea2d2188edf0f7ac6469fb34bc7def524 Mon Sep 17 00:00:00 2001 From: "Thomas A." Date: Sat, 2 Nov 2024 08:54:28 -0700 Subject: [PATCH] Fix Building With Newer Clang Version Treat "missing-template-arg-list-after-template-kw" as warning instead. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b279c28..4674d58 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -845,6 +845,8 @@ add_compile_options( -fvisibility-inlines-hidden -fno-threadsafe-statics --system-header-prefix=unicode/ + + -Wno-error=missing-template-arg-list-after-template-kw ) # JavaScriptCore now has support for "unified" builds (and Apple uses them)