Revision: 24751
Author: [email protected]
Date: Tue Oct 21 04:55:49 2014 UTC
Log: Visual Studio provides stdint.h these days.
[email protected]
Review URL: https://codereview.chromium.org/667573005
https://code.google.com/p/v8/source/detail?r=24751
Modified:
/branches/bleeding_edge/include/v8stdint.h
=======================================
--- /branches/bleeding_edge/include/v8stdint.h Tue Apr 29 06:42:26 2014 UTC
+++ /branches/bleeding_edge/include/v8stdint.h Tue Oct 21 04:55:49 2014 UTC
@@ -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_
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.