summaryrefslogtreecommitdiff
path: root/boost/asio/ip/impl/address.ipp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/asio/ip/impl/address.ipp')
-rw-r--r--boost/asio/ip/impl/address.ipp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/asio/ip/impl/address.ipp b/boost/asio/ip/impl/address.ipp
index 6c615592e5..9afa566a35 100644
--- a/boost/asio/ip/impl/address.ipp
+++ b/boost/asio/ip/impl/address.ipp
@@ -2,7 +2,7 @@
// ip/impl/address.ipp
// ~~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2018 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -135,7 +135,7 @@ address make_address(const std::string& str,
return make_address(str.c_str(), ec);
}
-#if defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
+#if defined(BOOST_ASIO_HAS_STRING_VIEW)
address make_address(string_view str)
{
@@ -148,7 +148,7 @@ address make_address(string_view str,
return make_address(static_cast<std::string>(str), ec);
}
-#endif // defined(BOOST_ASIO_HAS_STD_STRING_VIEW)
+#endif // defined(BOOST_ASIO_HAS_STRING_VIEW)
boost::asio::ip::address_v4 address::to_v4() const
{