Index: src/allocation.h |
diff --git a/src/allocation.h b/src/allocation.h |
index a92b71f08ef8a1967c0cd54777cebf961e4235c0..e87a3f1b1c18ceda8e0359125fd9ecd041ba9bc4 100644 |
--- a/src/allocation.h |
+++ b/src/allocation.h |
@@ -5,6 +5,7 @@ |
#ifndef V8_ALLOCATION_H_ |
#define V8_ALLOCATION_H_ |
+#include "src/base/compiler-specific.h" |
#include "src/globals.h" |
namespace v8 { |
@@ -39,7 +40,7 @@ class Embedded { |
void* operator new(size_t size); |
void operator delete(void* p); |
}; |
-#define BASE_EMBEDDED : public Embedded |
+#define BASE_EMBEDDED : public NON_EXPORTED_BASE(Embedded) |
#else |
#define BASE_EMBEDDED |
#endif |