aboutsummaryrefslogtreecommitdiffstats
path: root/include/http_request.h
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-09-07 04:30:53 +0900
committeripknHama <ipknhama@gmail.com>2014-09-07 04:30:53 +0900
commit2748e35430b9a4aaf64dfbd626d819f0fc5eedd2 (patch)
treea8ebd5648d46cc7073b2ae6f6b5ada0e702c456c /include/http_request.h
parentc89cafa820ec02f041c3b0e52877bc321f6a1ba9 (diff)
downloadcrow-2748e35430b9a4aaf64dfbd626d819f0fc5eedd2.tar.gz
crow-2748e35430b9a4aaf64dfbd626d819f0fc5eedd2.zip
basic middleware test: before_handler
Diffstat (limited to 'include/http_request.h')
-rw-r--r--include/http_request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_request.h b/include/http_request.h
index 77b3ecb..af623c6 100644
--- a/include/http_request.h
+++ b/include/http_request.h
@@ -11,6 +11,6 @@ namespace crow
std::unordered_map<std::string, std::string> headers;
std::string body;
- void* middleware_context;
+ void* middleware_context{};
};
}