diff ir/irtype.h @ 1366:81121ac19f61

Fixed previous aggregate initZ alignment. Added missing IrType::isDelegate method.
author Tomas Lindquist Olsen <tomas.l.olsen gmail com>
date Sat, 16 May 2009 18:37:16 +0200
parents 46f6365a50d7
children
line wrap: on
line diff
--- a/ir/irtype.h	Sat May 16 18:25:01 2009 +0200
+++ b/ir/irtype.h	Sat May 16 18:37:16 2009 +0200
@@ -13,6 +13,7 @@
 class IrTypeArray;
 class IrTypeBasic;
 class IrTypeClass;
+class IrTypeDelegate;
 class IrTypeFunction;
 class IrTypePointer;
 class IrTypeSArray;
@@ -36,6 +37,8 @@
     ///
     virtual IrTypeClass* isClass()      { return NULL; }
     ///
+    virtual IrTypeDelegate* isDelegate(){ return NULL; }
+    ///
     virtual IrTypeFunction* isFunction(){ return NULL; }
     ///
     virtual IrTypePointer* isPointer()  { return NULL; }