Skip to content

Commit 24d4cb1

Browse files
wip
1 parent 472f166 commit 24d4cb1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
find include src test \
2626
-type f -a \( -name "*.cc" -o -name "*.h" -o -name ".cuh" -o -name ".cu" \) \
27-
-print0 | xargs -0 clang-format-18 -i
27+
-print0 | xargs -0 clang-format-21 -i
2828
2929
- name: Check for differences
3030
run: |

include/tiles/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ template <typename... Args>
2222
inline void t_log(fmt::format_string<Args...> fmt_str, Args&&... args) {
2323
using clock = std::chrono::system_clock;
2424
auto const now = clock::to_time_t(clock::now());
25-
struct tm tmp {};
25+
struct tm tmp{};
2626
#if _MSC_VER >= 1400
2727
gmtime_s(&tmp, &now);
2828
#else

0 commit comments

Comments
 (0)