Forgot D2 versioning on typeinfo change.

This commit is contained in:
Tomas Lindquist Olsen 2008-11-12 07:23:34 +01:00
parent 582deb9827
commit 32f99e7091

View file

@ -230,7 +230,11 @@ int Type::builtinTypeInfo()
int TypeBasic::builtinTypeInfo() int TypeBasic::builtinTypeInfo()
{ {
#if DMDV2
return !mod; return !mod;
#else
return 1;
#endif
} }
int TypeDArray::builtinTypeInfo() int TypeDArray::builtinTypeInfo()