Auto inferenced void return!

This commit is contained in:
Nathan Braswell
2015-06-19 11:27:37 -04:00
parent 3ed6a15ab4
commit 30802fbcf8
6 changed files with 45 additions and 11 deletions

View File

@@ -3,6 +3,7 @@
#include <vector>
#include <map>
#include <set>
#include "Symbol.h"
//Circular dependency
@@ -32,6 +33,7 @@ class ASTData {
Type* valueType;
Symbol symbol;
std::map<std::string, std::vector<NodeTree<ASTData>*>> scope;
std::set<NodeTree<ASTData>*> closedVariables;
private:
};