aboutsummaryrefslogtreecommitdiffstats
path: root/include/crow.h
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2015-02-20 13:44:46 +0900
committeripknHama <ipknhama@gmail.com>2015-02-20 13:44:46 +0900
commit48811ce4a47200567796730d7467526683f265d7 (patch)
treef54890849a58160c39fc67073316c1349463d4f6 /include/crow.h
parent5507e98ce25f8468e37652b58a3512f40869af99 (diff)
downloadcrow-48811ce4a47200567796730d7467526683f265d7.tar.gz
crow-48811ce4a47200567796730d7467526683f265d7.zip
remove thread_local variables
* move thread_local variables forget_cached_date_str, timer_queue into each threads local stack
Diffstat (limited to 'include/crow.h')
-rw-r--r--include/crow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crow.h b/include/crow.h
index 953d990..cb9f1b3 100644
--- a/include/crow.h
+++ b/include/crow.h
@@ -10,11 +10,11 @@
#include "settings.h"
#include "logging.h"
-#include "http_server.h"
#include "utility.h"
#include "routing.h"
#include "middleware_context.h"
#include "http_request.h"
+#include "http_server.h"
#define CROW_ROUTE(app, url) app.route<crow::black_magic::get_parameter_tag(url)>(url)