aboutsummaryrefslogtreecommitdiffstats
path: root/http_server.h
diff options
context:
space:
mode:
authorAlex Butum <alexbutum@linux.com>2014-07-08 12:31:52 +0300
committerAlex Butum <alexbutum@linux.com>2014-07-08 12:31:52 +0300
commit36e415f5b825e18f2e4798c99db1ce48dd74381d (patch)
treedb33d884fb707775d26f03999a434c114a414d17 /http_server.h
parentbea1d02fff11f25bce1838f52835883bd815f1e5 (diff)
downloadcrow-36e415f5b825e18f2e4798c99db1ce48dd74381d.tar.gz
crow-36e415f5b825e18f2e4798c99db1ce48dd74381d.zip
Use C++ cstdint header in http_server.h
Diffstat (limited to 'http_server.h')
-rw-r--r--http_server.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/http_server.h b/http_server.h
index 3ca88f2..aa3124e 100644
--- a/http_server.h
+++ b/http_server.h
@@ -1,7 +1,7 @@
#pragma once
#include <boost/asio.hpp>
-#include <stdint.h>
+#include <cstdint>
#include <atomic>
#include "http_connection.h"
@@ -12,6 +12,7 @@ namespace crow
{
using namespace boost;
using tcp = asio::ip::tcp;
+
template <typename Handler>
class Server
{