Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2444)

Unified Diff: base/basictypes.h

Issue 110273004: Make sdch not use an incompatible stdint.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdch/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/basictypes.h
diff --git a/base/basictypes.h b/base/basictypes.h
index b67d17ddfa6fa9d466f44e28a9e90db6b1fd148e..2b22cf0beedf7431d8b4e836e3af5ba449dbbec3 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;
« no previous file with comments | « no previous file | sdch/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698