From 4afe83d9340f6ae017b7dfca5e293019f6888f22 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Wed, 28 Nov 2012 20:44:03 +0100 Subject: [PATCH] Removed the endianness detection macros (were not used) --- include/SFML/Config.hpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/include/SFML/Config.hpp b/include/SFML/Config.hpp index e51e989a0..5d0fd94f9 100644 --- a/include/SFML/Config.hpp +++ b/include/SFML/Config.hpp @@ -67,23 +67,6 @@ #endif -//////////////////////////////////////////////////////////// -// Identify the endianness -//////////////////////////////////////////////////////////// -#if defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || (defined(__MIPS__) && defined(__MISPEB__)) || \ - defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || defined(__sparc__) || defined(__hppa__) - - // Big endian - #define SFML_ENDIAN_BIG - -#else - - // Little endian - #define SFML_ENDIAN_LITTLE - -#endif - - //////////////////////////////////////////////////////////// // Define a portable debug macro ////////////////////////////////////////////////////////////