mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-08-03 04:50:05 +02:00
Removed obsolete IrSymbol class.
This commit is contained in:
@@ -1 +0,0 @@
|
||||
#include "ir/irsymbol.h"
|
||||
@@ -1,21 +0,0 @@
|
||||
#ifndef __LDC_IR_IRSYMBOL_H__
|
||||
#define __LDC_IR_IRSYMBOL_H__
|
||||
|
||||
#include "ir/ir.h"
|
||||
|
||||
/// Base class for all symbols.
|
||||
class IrSymbol
|
||||
{
|
||||
public:
|
||||
///
|
||||
IrSymbol(Ir* ir) : ir(ir) {}
|
||||
|
||||
/// Migrate symbols to current module if necessary.
|
||||
virtual void migrate() = 0;
|
||||
|
||||
protected:
|
||||
///
|
||||
Ir* ir;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user