diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-03-07 22:49:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-03-07 22:49:49 +0300 |
commit | a2393eca161cc4f0259356c2106ecf0cd653feca (patch) | |
tree | 3588c1726b7f974148efaa2a964bf9d24946b0b1 | |
parent | e6acf948ab76f6d41547272ce9162488ff9f0f95 (diff) | |
download | paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.tar.gz paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.tar.bz2 paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.tar.xz paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.zip |
-rw-r--r-- | src/analysis/function.h | 1 | ||||
-rw-r--r-- | src/nodes/cst/vector_cst.h | 1 | ||||
-rw-r--r-- | src/nodes/type/record_type.h | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/src/analysis/function.h b/src/analysis/function.h index 9358efe..5d261ac 100644 --- a/src/analysis/function.h +++ b/src/analysis/function.h @@ -23,6 +23,7 @@ #include "includes.h" #include <set> +#include <vector> struct FunctionDeclNode; struct TreeListNode; diff --git a/src/nodes/cst/vector_cst.h b/src/nodes/cst/vector_cst.h index 0552212..69a070d 100644 --- a/src/nodes/cst/vector_cst.h +++ b/src/nodes/cst/vector_cst.h @@ -23,7 +23,6 @@ #include "nodes/base/cst.h" #include <vector> - #include <string> struct VectorCstNode : public CstNode diff --git a/src/nodes/type/record_type.h b/src/nodes/type/record_type.h index 63e8cd8..62269b9 100644 --- a/src/nodes/type/record_type.h +++ b/src/nodes/type/record_type.h @@ -25,6 +25,7 @@ #include "nodes/base/decl.h" #include <string> +#include <vector> struct RecordTypeNode : public TypeNode { |