aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
{