Add support for casting operators
[oota-llvm.git] / lib / VMCore / Module.cpp
index cec75bd3fb6e5db39c4da3dbda50b03f5760ac2d..9d0015f7696a232213035cf2e6b3cc68f66f7cde 100644 (file)
 // Instantiate Templates - This ugliness is the price we have to pay
 // for having a DefHolderImpl.h file seperate from DefHolder.h!  :(
 //
-template class ValueHolder<Method, Module>;
+template class ValueHolder<Method, Module, Module>;
 
 Module::Module()
-  : SymTabValue(0/*TODO: REAL TYPE*/, Value::ModuleVal, ""),
+  : Value(0/*TODO: REAL TYPE*/, Value::ModuleVal, ""), SymTabValue(this),
     MethodList(this, this) {
 }