Skip to content

Commit 98656b9

Browse files
committed
chore: reduce clang-tidy issues
1 parent 0d6bc8f commit 98656b9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Source/Ecsact/Public/EcsactAsyncRunner.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,8 @@ auto UEcsactAsyncRunner::EnqueueExecutionOptions() -> void {
3939
}
4040

4141
auto UEcsactAsyncRunner::GetStatId() const -> TStatId {
42-
RETURN_QUICK_DECLARE_CYCLE_STAT(UEcsactAsyncRunner, STATGROUP_Tickables);
42+
RETURN_QUICK_DECLARE_CYCLE_STAT( // NOLINT
43+
UEcsactAsyncRunner,
44+
STATGROUP_Tickables
45+
);
4346
}

Source/Ecsact/Public/EcsactRunner.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ auto UEcsactRunner::Tick(float DeltaTime) -> void {
44
}
55

66
auto UEcsactRunner::GetStatId() const -> TStatId {
7-
RETURN_QUICK_DECLARE_CYCLE_STAT(UEcsactRunner, STATGROUP_Tickables);
7+
RETURN_QUICK_DECLARE_CYCLE_STAT( // NOLINT
8+
UEcsactRunner,
9+
STATGROUP_Tickables
10+
);
811
}
912

1013
auto UEcsactRunner::IsTickable() const -> bool {

Source/Ecsact/Public/EcsactSyncRunner.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,8 @@ auto UEcsactSyncRunner::Tick(float DeltaTime) -> void {
4040
}
4141

4242
auto UEcsactSyncRunner::GetStatId() const -> TStatId {
43-
RETURN_QUICK_DECLARE_CYCLE_STAT(UEcsactSyncRunner, STATGROUP_Tickables);
43+
RETURN_QUICK_DECLARE_CYCLE_STAT( // NOLINT
44+
UEcsactSyncRunner,
45+
STATGROUP_Tickables
46+
);
4447
}

0 commit comments

Comments
 (0)