From 6b411c63c9b084e99a3711da10f93225ff93cc85 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 5 Jan 2015 16:30:02 +0000 Subject: Common: Remove dead platform #ifdefs to make the code more readable. Symbian, Xbox, Blackberry and iOS got removed. FreeBSD and Android kept due to them potentially being able to run Citra in the future. The iOS specific part also got removed from PPSSPP in order to fix a bug there. --- src/common/mem_arena.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/common/mem_arena.h') diff --git a/src/common/mem_arena.h b/src/common/mem_arena.h index b5f0aa89..3379d252 100644 --- a/src/common/mem_arena.h +++ b/src/common/mem_arena.h @@ -21,10 +21,6 @@ #include #endif -#ifdef __SYMBIAN32__ -#include -#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 -- cgit v1.2.3