Removed unnecessary includes
This commit is contained in:
parent
0a72f6f280
commit
c9c6ee3d98
2 changed files with 2 additions and 5 deletions
|
|
@ -1,15 +1,13 @@
|
||||||
#ifndef CLIENT_HTTP_HPP
|
#ifndef CLIENT_HTTP_HPP
|
||||||
#define CLIENT_HTTP_HPP
|
#define CLIENT_HTTP_HPP
|
||||||
|
|
||||||
|
#include "utility.hpp"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <random>
|
#include <random>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <type_traits>
|
|
||||||
#include "utility.hpp"
|
|
||||||
|
|
||||||
#ifdef USE_STANDALONE_ASIO
|
#ifdef USE_STANDALONE_ASIO
|
||||||
#include <asio.hpp>
|
#include <asio.hpp>
|
||||||
#include <system_error>
|
|
||||||
namespace SimpleWeb {
|
namespace SimpleWeb {
|
||||||
using error_code = std::error_code;
|
using error_code = std::error_code;
|
||||||
using errc = std::errc;
|
using errc = std::errc;
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,15 @@
|
||||||
#ifndef SERVER_HTTP_HPP
|
#ifndef SERVER_HTTP_HPP
|
||||||
#define SERVER_HTTP_HPP
|
#define SERVER_HTTP_HPP
|
||||||
|
|
||||||
|
#include "utility.hpp"
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include "utility.hpp"
|
|
||||||
|
|
||||||
#ifdef USE_STANDALONE_ASIO
|
#ifdef USE_STANDALONE_ASIO
|
||||||
#include <asio.hpp>
|
#include <asio.hpp>
|
||||||
#include <type_traits>
|
|
||||||
namespace SimpleWeb {
|
namespace SimpleWeb {
|
||||||
using error_code = std::error_code;
|
using error_code = std::error_code;
|
||||||
using errc = std::errc;
|
using errc = std::errc;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue