summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-03-07 22:49:49 +0300
committerAndrei Karas <akaras@inbox.ru>2019-03-07 22:49:49 +0300
commita2393eca161cc4f0259356c2106ecf0cd653feca (patch)
tree3588c1726b7f974148efaa2a964bf9d24946b0b1
parente6acf948ab76f6d41547272ce9162488ff9f0f95 (diff)
downloadparanucker-a2393eca161cc4f0259356c2106ecf0cd653feca.tar.gz
paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.tar.bz2
paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.tar.xz
paranucker-a2393eca161cc4f0259356c2106ecf0cd653feca.zip
Add more missing vector includesHEADmaster
-rw-r--r--src/analysis/function.h1
-rw-r--r--src/nodes/cst/vector_cst.h1
-rw-r--r--src/nodes/type/record_type.h1
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
{