Moved SimpleWeb::string_view to utility.hpp, and made use of string_view in Server::Response::write

This commit is contained in:
eidheim 2018-07-12 08:43:07 +02:00
commit 56b1df1ee5
5 changed files with 20 additions and 20 deletions

View file

@ -29,22 +29,6 @@ namespace SimpleWeb {
} // namespace SimpleWeb
#endif
#if __cplusplus > 201402L || (defined(_MSC_VER) && _MSC_VER >= 1910)
#include <string_view>
namespace SimpleWeb {
using string_view = std::string_view;
}
#elif !defined(USE_STANDALONE_ASIO)
#include <boost/utility/string_ref.hpp>
namespace SimpleWeb {
using string_view = boost::string_ref;
}
#else
namespace SimpleWeb {
using string_view = const std::string &;
}
#endif
namespace SimpleWeb {
template <class socket_type>
class Client;