Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index f98c025ddd3ec0de5ac66198180dd0765406d3cc..ebe2d861c666e7313eaca1225a4edcffa9bbcdbe 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -881,7 +881,10 @@ class FixedArrayBase; |
class GlobalObject; |
class ObjectVisitor; |
class StringStream; |
-class Type; |
+// We cannot just say "class Type;" if it is created from a template... =8-? |
+template<class> class TypeImpl; |
+struct HeapTypeConfig; |
+typedef TypeImpl<HeapTypeConfig> Type; |
// A template-ized version of the IsXXX functions. |