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

Unified Diff: include/v8stdint.h

Issue 667573005: Visual Studio provides stdint.h these days. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8stdint.h
diff --git a/include/v8stdint.h b/include/v8stdint.h
index 9a935dddeb8de90d07cec636479ab7ddd6761775..ce25481b5c4cbc3b5eef34eb0e97aa4abc7f8b55 100644
--- a/include/v8stdint.h
+++ b/include/v8stdint.h
@@ -8,26 +8,9 @@
#define V8STDINT_H_
#include <stddef.h>
+#include <stdint.h>
#include <stdio.h>
#include "v8config.h"
-#if V8_OS_WIN && !V8_CC_MINGW
-
-typedef signed char int8_t;
-typedef unsigned char uint8_t;
-typedef short int16_t; // NOLINT
-typedef unsigned short uint16_t; // NOLINT
-typedef int int32_t;
-typedef unsigned int uint32_t;
-typedef __int64 int64_t;
-typedef unsigned __int64 uint64_t;
-// intptr_t and friends are defined in crtdefs.h through stdio.h.
-
-#else
-
-#include <stdint.h> // NOLINT
-
-#endif
-
#endif // V8STDINT_H_
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698