From 65e733dfea699d9c75c1f413488a2d9071944c03 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Wed, 24 Jun 2015 13:46:55 +0300 Subject: Fixed . --- std/stdint.hpp | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 std/stdint.hpp (limited to 'std/stdint.hpp') diff --git a/std/stdint.hpp b/std/stdint.hpp deleted file mode 100644 index 16786e8886..0000000000 --- a/std/stdint.hpp +++ /dev/null @@ -1,32 +0,0 @@ -#pragma once -#include "common_defines.hpp" -#include "target_os.hpp" - -#ifdef new -#undef new -#endif - -#if defined(_MSC_VER) && _MSC_VER < 1600 // in VS2010 types below are defined - typedef __int8 int8_t; - typedef __int16 int16_t; - typedef __int32 int32_t; - typedef __int64 int64_t; - typedef unsigned __int8 uint8_t; - typedef unsigned __int16 uint16_t; - typedef unsigned __int32 uint32_t; - typedef unsigned __int64 uint64_t; - -#elif defined(OMIM_OS_BADA) || defined(OMIM_OS_ANDROID) - #include - -#else - #ifdef OMIM_OS_LINUX - #include - #endif - #include - -#endif - -#ifdef DEBUG_NEW -#define new DEBUG_NEW -#endif -- cgit v1.2.3