From 7bf465362ad7d882d514e7e6437c14f304d6970a Mon Sep 17 00:00:00 2001 From: Seth Hamilton Date: Mon, 26 Mar 2018 10:27:23 -0400 Subject: [PATCH] simplified ifdef --- client_http.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_http.hpp b/client_http.hpp index 5d802b5..1478e75 100644 --- a/client_http.hpp +++ b/client_http.hpp @@ -29,7 +29,7 @@ namespace SimpleWeb { } // namespace SimpleWeb #endif -#if defined(__has_include) && __has_include() && (__cplusplus >= 201402L || (defined(_MSC_VER) && _MSC_VER >= 1910)) +#if __cplusplus >= 201402L || (defined(_MSC_VER) && _MSC_VER >= 1910) #include namespace SimpleWeb { using string_view = std::string_view; } #elif !defined(USE_STANDALONE_ASIO)