Common: Add MemArena.h/cpp to the Common namespace

Brings more common code under the Common namespace.
This commit is contained in:
Lioncash
2018-05-15 17:28:41 -04:00
parent 51ce30e09d
commit 947fa271be
3 changed files with 10 additions and 3 deletions

View File

@ -28,6 +28,8 @@
#endif
#endif
namespace Common
{
#ifdef ANDROID
#define ASHMEM_DEVICE "/dev/ashmem"
@ -154,3 +156,5 @@ u8* MemArena::FindMemoryBase()
return static_cast<u8*>(base);
#endif
}
} // namespace Common