Skip to content

Commit 1a1f6f5

Browse files
committed
GCC fix
1 parent 12eb730 commit 1a1f6f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VCMP-LUA/vcmpWrap/Modules/CPR/Remote.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ void Remote::Process(float elapsedTime)
134134
if (s_Container.size() == 0) return;
135135
using namespace std::chrono_literals;
136136

137-
for (auto& it = s_Container.begin(); it != s_Container.end(); it++)
137+
for (auto it = s_Container.begin(); it != s_Container.end(); it++)
138138
{
139139
if (it->future.wait_for(0s) == std::future_status::ready)
140140
{

0 commit comments

Comments
 (0)