Skip to content

Commit

Permalink
Merge branch 'patch-1' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed May 24, 2023
2 parents 4b3a8d1 + b59490f commit ed0b5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/Src/Tracer/TraceFileReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ TraceFilePage* TraceFileReader::getPage(unsigned long long index, unsigned long
{
FILETIME pageOutTime = pages.begin()->second.lastAccessed;
Range pageOutIndex = pages.begin()->first;
for(auto i : pages)
for(auto & i : pages)
{
if(pageOutTime.dwHighDateTime < i.second.lastAccessed.dwHighDateTime || (pageOutTime.dwHighDateTime == i.second.lastAccessed.dwHighDateTime && pageOutTime.dwLowDateTime < i.second.lastAccessed.dwLowDateTime))
{
Expand Down

0 comments on commit ed0b5d3

Please sign in to comment.