Files

11 lines
116 B
C++
Raw Permalink Normal View History

2019-01-19 18:28:07 +01:00
#pragma once
2014-01-31 08:23:00 +13:00
struct Type;
2019-01-18 17:04:57 +01:00
struct Var {
int index;
Type* type;
2014-01-31 08:23:00 +13:00
2019-01-18 17:04:57 +01:00
Var(int i, Type* t) : index(i), type(t) {}
2014-01-31 08:23:00 +13:00
};