Index: src/checks.h |
diff --git a/src/checks.h b/src/checks.h |
index 7c15588b4a5ad36c8e246e6b0006de8ee1b8e126..062bdf6b3f2df26017a2357720476bf1d8122a52 100644 |
--- a/src/checks.h |
+++ b/src/checks.h |
@@ -30,7 +30,7 @@ |
#include <string.h> |
-#include "globals.h" |
+#include "../include/v8stdint.h" |
extern "C" void V8_Fatal(const char* file, int line, const char* format, ...); |
@@ -233,7 +233,7 @@ inline void CheckNonEqualsHelper(const char* file, |
// Use C++11 static_assert if possible, which gives error |
// messages that are easier to understand on first sight. |
-#if defined(V8_HAVE_CXX11_STATIC_ASSERT) |
+#if V8_HAS_CXX11_STATIC_ASSERT |
#define STATIC_CHECK(test) static_assert(test, #test) |
#else |
// This is inspired by the static assertion facility in boost. This |