diff options
Diffstat (limited to 'base/basictypes.h')
-rw-r--r-- | base/basictypes.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/base/basictypes.h b/base/basictypes.h index 842d784..cdd127e 100644 --- a/base/basictypes.h +++ b/base/basictypes.h @@ -13,16 +13,8 @@ #include "base/compiler_specific.h" #include "base/port.h" // Types that only need exist on certain systems. -// TODO(vtl): We get conflicts with other definitions of |int8|/|uint8| if we -// try to define them as |int8_t|/|uint8_t|, at least on Windows. -#ifdef _MSC_VER -typedef signed char int8; -typedef unsigned char uint8; -#else typedef int8_t int8; typedef uint8_t uint8; -#endif - typedef int16_t int16; typedef int32_t int32; typedef uint16_t uint16; |