Skip to content

Commit 0c27255

Browse files
committedMar 21, 2025
Update clang-format version to 18
This is the version that is installed by default on Ubuntu 24.04 which we currently run CI and testing on.
1 parent c9e6075 commit 0c27255

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/scripts/install_dependencies.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ sudo apt install -y \
5555
clang-16 \
5656
clang-17 \
5757
clang-18 \
58-
clang-format-14 \
58+
clang-format-18 \
5959
libtbb-dev
6060

6161
pip install -r requirements.txt

‎cmake/modules/AutoClangFormat.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ add_custom_target(format-cpp-files
2121
COMMAND find ${DIRS_TO_FORMAT_CPP} ${FIND_TO_FORMAT_CPP})
2222

2323
#
24-
# Use clang-format-14 for code format
24+
# Use clang-format for code format
2525
#
2626
add_custom_target(format-cpp
2727
COMMAND find ${DIRS_TO_FORMAT_CPP} ${FIND_TO_FORMAT_CPP} |
28-
xargs -P ${CPU_COUNT} clang-format-14 -style=file -i)
28+
xargs -P ${CPU_COUNT} clang-format-18 -style=file -i)
2929

3030
#
3131
# Use simple python script for fixing C like boxed comments

0 commit comments

Comments
 (0)
Please sign in to comment.