From b3b134eed8b4e7d8178b8867977d214579ed9a7a Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 12 Aug 2026 11:14:20 +0100 Subject: [PATCH] ci: add -Wextra-semi to llvm config --- ci/configs/llvm.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/configs/llvm.bash b/ci/configs/llvm.bash index 7289208e..af3b9719 100644 --- a/ci/configs/llvm.bash +++ b/ci/configs/llvm.bash @@ -2,7 +2,7 @@ CI_DESC="CI job using LLVM-based libraries and tools (clang, libc++, clang-tidy, CI_DIR=build-llvm NIX_ARGS=(--arg enableLibcxx true) export CXX=clang++ -export CXXFLAGS="-Werror -Wall -Wextra -Wpedantic -Wthread-safety -Wno-unused-parameter -Wno-c++23-lambda-attributes" +export CXXFLAGS="-Werror -Wall -Wextra -Wextra-semi -Wpedantic -Wthread-safety -Wno-unused-parameter -Wno-c++23-lambda-attributes" CMAKE_ARGS=( -G Ninja -DMP_ENABLE_CLANG_TIDY=ON