Nearly all build jobs fail with a missing function in Archive.cpp (#4195)
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -181,7 +181,7 @@ namespace AZ::IO::ArchiveInternal
|
||||
return 0;
|
||||
}
|
||||
|
||||
nTotal = (AZStd::min)(nTotal, GetFileSize() - m_nCurSeek);
|
||||
nTotal = AZStd::min<size_t>(nTotal, GetFileSize() - m_nCurSeek);
|
||||
|
||||
int64_t nReadBytes = GetFile()->ReadData(pDest, m_nCurSeek, nTotal);
|
||||
if (nReadBytes == -1)
|
||||
|
||||
Reference in New Issue
Block a user