Files
BlitzNext/compiler/var.hpp
T
Michael Fabian 'Xaymar' Dirks c9ff5b8ca4 compiler: Formatting
2019-01-18 17:04:57 +01:00

14 lines
139 B
C++

#ifndef VAR_H
#define VAR_H
struct Type;
struct Var {
int index;
Type* type;
Var(int i, Type* t) : index(i), type(t) {}
};
#endif