summaryrefslogtreecommitdiffstats
path: root/src/common/mem_arena.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-01-05 17:30:02 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-01-06 19:57:28 +0100
commit6b411c63c9b084e99a3711da10f93225ff93cc85 (patch)
tree963e9f9afcbc6e052466e4d3a1acee7cd654f8b3 /src/common/mem_arena.h
parentMerge pull request #402 from chrisvj/master (diff)
downloadyuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.gz
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.bz2
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.lz
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.xz
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.zst
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.zip
Diffstat (limited to 'src/common/mem_arena.h')
-rw-r--r--src/common/mem_arena.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common/mem_arena.h b/src/common/mem_arena.h
index b5f0aa890..3379d2529 100644
--- a/src/common/mem_arena.h
+++ b/src/common/mem_arena.h
@@ -21,10 +21,6 @@
#include <windows.h>
#endif
-#ifdef __SYMBIAN32__
-#include <e32std.h>
-#endif
-
#include "common/common.h"
// This class lets you create a block of anonymous RAM, and then arbitrarily map views into it.
@@ -39,12 +35,8 @@ public:
void *CreateView(s64 offset, size_t size, void *base = 0);
void ReleaseView(void *view, size_t size);
-#ifdef __SYMBIAN32__
- RChunk* memmap;
-#else
// This only finds 1 GB in 32-bit
static u8 *Find4GBBase();
-#endif
private:
#ifdef _WIN32