mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
15 lines
192 B
C
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
|