aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-09-10 01:16:05 +0900
committeripknHama <ipknhama@gmail.com>2016-09-10 01:22:06 +0900
commita1a587784ebb9852587dee618ea19b1572cbd6c7 (patch)
tree9ef600353811e152344443ab1329d97fbdb62e9c /include
parent8a4b126ea6684722637d201b5017c6f50cb8fddc (diff)
downloadcrow-a1a587784ebb9852587dee618ea19b1572cbd6c7.tar.gz
crow-a1a587784ebb9852587dee618ea19b1572cbd6c7.zip
Add missing dependency (for amalgamate)
Diffstat (limited to 'include')
-rw-r--r--include/json.h2
-rw-r--r--include/utility.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/json.h b/include/json.h
index 9f06244..f0b4a87 100644
--- a/include/json.h
+++ b/include/json.h
@@ -12,6 +12,8 @@
#include <boost/operators.hpp>
#include <vector>
+#include "settings.h"
+
#if defined(__GNUG__) || defined(__clang__)
#define crow_json_likely(x) __builtin_expect(x, 1)
#define crow_json_unlikely(x) __builtin_expect(x, 0)
diff --git a/include/utility.h b/include/utility.h
index e82e6bf..e17008e 100644
--- a/include/utility.h
+++ b/include/utility.h
@@ -8,6 +8,8 @@
#include <functional>
#include <string>
+#include "settings.h"
+
namespace crow
{
namespace black_magic