mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
Core: Fixed warning in FileMapping
This commit is contained in:
parent
705031c483
commit
cd4bc7491a
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ public:
|
|||
Time GetTime() const;
|
||||
|
||||
byte *Map(int64 mapoffset, size_t maplen);
|
||||
byte *Map() { return Map(0, GetFileSize()); }
|
||||
byte *Map() { ASSERT((size_t)GetFileSize() == GetFileSize()); return Map(0, (size_t)GetFileSize()); }
|
||||
bool Unmap();
|
||||
bool Close();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue