We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e6075 commit 0c27255Copy full SHA for 0c27255
.github/scripts/install_dependencies.sh
@@ -55,7 +55,7 @@ sudo apt install -y \
55
clang-16 \
56
clang-17 \
57
clang-18 \
58
- clang-format-14 \
+ clang-format-18 \
59
libtbb-dev
60
61
pip install -r requirements.txt
cmake/modules/AutoClangFormat.cmake
@@ -21,11 +21,11 @@ add_custom_target(format-cpp-files
21
COMMAND find ${DIRS_TO_FORMAT_CPP} ${FIND_TO_FORMAT_CPP})
22
23
#
24
-# Use clang-format-14 for code format
+# Use clang-format for code format
25
26
add_custom_target(format-cpp
27
COMMAND find ${DIRS_TO_FORMAT_CPP} ${FIND_TO_FORMAT_CPP} |
28
- xargs -P ${CPU_COUNT} clang-format-14 -style=file -i)
+ xargs -P ${CPU_COUNT} clang-format-18 -style=file -i)
29
30
31
# Use simple python script for fixing C like boxed comments
0 commit comments