Files
ldc/ir/ir.h
2008-10-06 22:54:08 +02:00

15 lines
192 B
C

// this head contains stuff used by all the IR
#ifndef LDC_IR_IR_H
#define LDC_IR_IR_H
#include "ir/irforw.h"
#include "root.h"
struct IrBase : Object
{
virtual ~IrBase() {}
};
#endif