Skip to content

Commit

Permalink
fix: one more linux warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisAMJ committed Sep 19, 2024
1 parent 4d40741 commit 61f9976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/SDK/FixedQueue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class FixedQueue {
begin = 0;
end = 0;
size = queue.size();
for (auto i = 0; i < size; i++) {
for (size_t i = 0; i < size; i++) {
queue[i] = value;
}
}
Expand Down

0 comments on commit 61f9976

Please sign in to comment.