fix(Core): Compilation with EXTRA_LOGS in Windows (#4605)

This commit is contained in:
Asfo Zavala
2021-03-04 12:20:04 -06:00
committed by GitHub
parent 1ef200397a
commit e59041ddb1

View File

@@ -451,7 +451,7 @@ void WardenWin::RequestChecks()
#if defined(ENABLE_EXTRAS) && defined(ENABLE_EXTRA_LOGS)
std::stringstream stream;
stream << "Sent check id's: ";
for (uint16 checkId : _currentChecks)
for (uint16 checkId : _CurrentChecks)
{
stream << checkId << " ";
}