view ir/ir.h @ 176:a074a5ff709c trunk

[svn r192] Fixed: String literals as constant expression was broken for utf16/32.
author lindquist
date Wed, 07 May 2008 00:58:36 +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