aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-10-24 02:45:34 +0900
committeripknHama <ipknhama@gmail.com>2014-10-24 02:45:34 +0900
commitbdc9dd8d480b2d116b80f795f38cc8ed28dbb93d (patch)
tree14b27b4af43e21017bb8de37755d0940572ce990 /include
parent111b34631253b2e1922222899fbec71861448482 (diff)
downloadcrow-bdc9dd8d480b2d116b80f795f38cc8ed28dbb93d.tar.gz
crow-bdc9dd8d480b2d116b80f795f38cc8ed28dbb93d.zip
added missing header for amalgate
Diffstat (limited to 'include')
-rw-r--r--include/common.h1
-rw-r--r--include/http_connection.h1
-rw-r--r--include/http_server.h1
-rw-r--r--include/json.h1
-rw-r--r--include/routing.h1
5 files changed, 5 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index 5720b46..d19076a 100644
--- a/include/common.h
+++ b/include/common.h
@@ -1,5 +1,6 @@
#pragma once
+#include <vector>
#include <string>
#include <stdexcept>
#include "utility.h"
diff --git a/include/http_connection.h b/include/http_connection.h
index 537be89..d88bc25 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -5,6 +5,7 @@
#include <boost/array.hpp>
#include <atomic>
#include <chrono>
+#include <vector>
#include "http_parser_merged.h"
diff --git a/include/http_server.h b/include/http_server.h
index 484aa83..2241dec 100644
--- a/include/http_server.h
+++ b/include/http_server.h
@@ -5,6 +5,7 @@
#include <cstdint>
#include <atomic>
#include <future>
+#include <vector>
#include <memory>
diff --git a/include/json.h b/include/json.h
index 9306e2a..d79fe88 100644
--- a/include/json.h
+++ b/include/json.h
@@ -10,6 +10,7 @@
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/operators.hpp>
+#include <vector>
#if defined(__GNUG__) || defined(__clang__)
#define crow_json_likely(x) __builtin_expect(x, 1)
diff --git a/include/routing.h b/include/routing.h
index 87d492b..9f607f1 100644
--- a/include/routing.h
+++ b/include/routing.h
@@ -6,6 +6,7 @@
#include <unordered_map>
#include <memory>
#include <boost/lexical_cast.hpp>
+#include <vector>
#include "common.h"
#include "http_response.h"