Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index c218f80dc11a701c048eeb957427243dc537c738..a74b6c793036c5f3ba57bda6f393febe2805b77e 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -193,10 +193,9 @@ const uint32_t kMaxUInt32 = 0xFFFFFFFFu; |
const int kCharSize = sizeof(char); // NOLINT |
const int kShortSize = sizeof(short); // NOLINT |
-const int kIntSize = sizeof(int); // NOLINT |
const int kDoubleSize = sizeof(double); // NOLINT |
-const int kPointerSize = sizeof(void*); // NOLINT |
const int kIntptrSize = sizeof(intptr_t); // NOLINT |
+// kIntSize and kPointerSize are defined in include/v8.h. |
#if V8_HOST_ARCH_64_BIT |
const int kPointerSizeLog2 = 3; |