aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-05-23 22:04:09 +0900
committeripknHama <ipknhama@gmail.com>2016-05-23 22:04:09 +0900
commitc164db353b8534ecb221e74c77e7600532eaa8ea (patch)
tree2e55a47b665acd6d6dfdaff965a636f7a79c9908 /include
parentcb5ef23ef0f65a9d7a3085e3df67fca60df8a86b (diff)
downloadcrow-c164db353b8534ecb221e74c77e7600532eaa8ea.tar.gz
crow-c164db353b8534ecb221e74c77e7600532eaa8ea.zip
fix warning (initializing order of bind_addr_)
Diffstat (limited to 'include')
-rw-r--r--include/http_server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_server.h b/include/http_server.h
index 4696450..fbe470d 100644
--- a/include/http_server.h
+++ b/include/http_server.h
@@ -30,8 +30,8 @@ namespace crow
signals_(io_service_, SIGINT, SIGTERM),
handler_(handler),
concurrency_(concurrency),
- bindaddr_(bindaddr),
port_(port),
+ bindaddr_(bindaddr),
middlewares_(middlewares),
adaptor_ctx_(adaptor_ctx)
{