mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
Use C++ cstdint header in http_server.h
This commit is contained in:
parent
bea1d02fff
commit
36e415f5b8
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user