Include missing forward declarations in AsmDataForward

This commit is contained in:
Alex Beregszaszi
2017-11-29 21:43:44 +00:00
parent 565130994a
commit 9f756e3797
+3
View File
@@ -43,9 +43,12 @@ struct FunctionDefinition;
struct FunctionCall;
struct If;
struct Switch;
struct Case;
struct ForLoop;
struct Block;
struct TypedName;
using Statement = boost::variant<Instruction, Literal, Label, StackAssignment, Identifier, Assignment, FunctionCall, FunctionalInstruction, VariableDeclaration, FunctionDefinition, If, Switch, ForLoop, Block>;
}