aboutsummaryrefslogtreecommitdiffstats
path: root/amalgamate
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-09-21 23:17:29 +0900
committeripknHama <ipknhama@gmail.com>2016-09-21 23:17:29 +0900
commit64109072344d20a2959bff0e6af32ef6b336753c (patch)
tree6c79688bf79130d7cffea1d6cc49e46dd461747d /amalgamate
parent3081e4e1a82a4efd8feff68850c4cc04af230cd7 (diff)
downloadcrow-64109072344d20a2959bff0e6af32ef6b336753c.tar.gz
crow-64109072344d20a2959bff0e6af32ef6b336753c.zip
Update amalgamate
Diffstat (limited to 'amalgamate')
-rw-r--r--amalgamate/crow_all.h52
-rw-r--r--amalgamate/merge_all.py1
2 files changed, 52 insertions, 1 deletions
diff --git a/amalgamate/crow_all.h b/amalgamate/crow_all.h
index 27c15f2..41b06ff 100644
--- a/amalgamate/crow_all.h
+++ b/amalgamate/crow_all.h
@@ -6324,13 +6324,14 @@ constexpr crow::HTTPMethod operator "" _method(const char* str, size_t /*len*/)
#pragma once
+#include <boost/asio.hpp>
+
-#include <boost/asio.hpp>
namespace crow
{
@@ -7074,6 +7075,7 @@ namespace crow
+
namespace crow
{
template <typename Adaptor, typename Handler, typename ... Middlewares>
@@ -9601,3 +9603,51 @@ namespace crow
}
+
+#pragma once
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/amalgamate/merge_all.py b/amalgamate/merge_all.py
index b1e5170..afa0124 100644
--- a/amalgamate/merge_all.py
+++ b/amalgamate/merge_all.py
@@ -12,6 +12,7 @@ if len(sys.argv) > 1:
OUTPUT = 'crow_all.h'
re_depends = re.compile('^#include "(.*)"', re.MULTILINE)
headers = [x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, '*.h*'))]
+headers += ['crow/' + x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, 'crow/*.h*'))]
print(headers)
edges = defaultdict(list)
for header in headers: