From fa5a3bdc4f6fc208dc69cb55683e6edb730df585 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 5 Jul 2017 13:15:01 +0200 Subject: [PATCH] Reverted namespace asio = asio for standalone asio because of gcc error --- client_http.hpp | 1 - server_http.hpp | 1 - 2 files changed, 2 deletions(-) diff --git a/client_http.hpp b/client_http.hpp index 1dd551b..96a17f4 100644 --- a/client_http.hpp +++ b/client_http.hpp @@ -9,7 +9,6 @@ #ifdef USE_STANDALONE_ASIO #include namespace SimpleWeb { - namespace asio = asio; using error_code = std::error_code; using errc = std::errc; using system_error = std::system_error; diff --git a/server_http.hpp b/server_http.hpp index 23ffd1e..7862835 100644 --- a/server_http.hpp +++ b/server_http.hpp @@ -11,7 +11,6 @@ #ifdef USE_STANDALONE_ASIO #include namespace SimpleWeb { - namespace asio = asio; using error_code = std::error_code; using errc = std::errc; namespace make_error_code = std;