diff options
Diffstat (limited to 'runtime/mem_map.cc')
-rw-r--r-- | runtime/mem_map.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mem_map.cc b/runtime/mem_map.cc index 4d3f8c9a0..d755cb98a 100644 --- a/runtime/mem_map.cc +++ b/runtime/mem_map.cc @@ -485,7 +485,7 @@ MemMap::MemMap(const std::string& name, byte* begin, size_t size, void* base_beg MutexLock mu(Thread::Current(), *Locks::mem_maps_lock_); maps_.insert(std::pair<void*, MemMap*>(base_begin_, this)); } -}; +} MemMap* MemMap::RemapAtEnd(byte* new_end, const char* tail_name, int tail_prot, std::string* error_msg) { |