We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 472f166 commit 24d4cb1Copy full SHA for 24d4cb1
.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
24
run: |
25
find include src test \
26
-type f -a \( -name "*.cc" -o -name "*.h" -o -name ".cuh" -o -name ".cu" \) \
27
- -print0 | xargs -0 clang-format-18 -i
+ -print0 | xargs -0 clang-format-21 -i
28
29
- name: Check for differences
30
include/tiles/util.h
@@ -22,7 +22,7 @@ template <typename... Args>
22
inline void t_log(fmt::format_string<Args...> fmt_str, Args&&... args) {
23
using clock = std::chrono::system_clock;
auto const now = clock::to_time_t(clock::now());
- struct tm tmp {};
+ struct tm tmp{};
#if _MSC_VER >= 1400
gmtime_s(&tmp, &now);
#else
0 commit comments