Use C++ cstdint header in http_server.h

This commit is contained in:
Alex Butum 2014-07-08 12:31:52 +03:00
parent bea1d02fff
commit 36e415f5b8

View File

@ -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
{