Warning fixes for win64

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35921 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-10-17 22:08:05 +00:00
parent c0f420c1ac
commit 4a10ea8b13
15 changed files with 31 additions and 28 deletions

View File

@@ -664,7 +664,7 @@ size_t wxStreamBase::GetSize() const
return 0;
const size_t len = wx_truncate_cast(size_t, length);
wxASSERT_MSG( len == length, _T("large files not supported") );
wxASSERT_MSG( len == length + size_t(0), _T("large files not supported") );
return len;
}