view ir/ir.h @ 367:519adb3128b1 trunk

[svn r388] ClassInfo declaration could fail if base classdecl hadn't been resolved. Use ForceDeclare on the class decl instead of declaring class info only.
author ChristianK
date Tue, 15 Jul 2008 08:17:43 +0200
parents 0e28624814e8
children eef8ac26c66c
line wrap: on
line source

// this head contains stuff used by all the IR

#ifndef LLVMDC_IR_IR_H
#define LLVMDC_IR_IR_H

#include "ir/irforw.h"
#include "root.h"

struct IrBase : Object
{
    virtual ~IrBase() {}
};

#endif