chore: Upgrade to llvm 19 tooling (#1681)

For #1664
This commit is contained in:
Alex Kremer
2024-10-14 16:43:49 +01:00
parent 5c8fc939f2
commit 0f12a6d7f2
6 changed files with 9 additions and 9 deletions

View File

@@ -26,12 +26,12 @@ sources="src tests"
formatter="clang-format -i"
version=$($formatter --version | grep -o '[0-9\.]*')
if [[ "18.0.0" > "$version" ]]; then
if [[ "19.0.0" > "$version" ]]; then
cat <<EOF
ERROR
-----------------------------------------------------------------------------
A minimum of version 18 of `which clang-format` is required.
A minimum of version 19 of `which clang-format` is required.
Your version is $version.
Please fix paths and run again.
-----------------------------------------------------------------------------