diff options
Diffstat (limited to '3rdparty/asio/include/asio/detail/array.hpp')
-rw-r--r-- | 3rdparty/asio/include/asio/detail/array.hpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/3rdparty/asio/include/asio/detail/array.hpp b/3rdparty/asio/include/asio/detail/array.hpp index cfb0acce60a..f2015c7919b 100644 --- a/3rdparty/asio/include/asio/detail/array.hpp +++ b/3rdparty/asio/include/asio/detail/array.hpp @@ -2,7 +2,7 @@ // detail/array.hpp // ~~~~~~~~~~~~~~~~ // -// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 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) @@ -17,20 +17,12 @@ #include "asio/detail/config.hpp" -#if defined(ASIO_HAS_STD_ARRAY) -# include <array> -#else // defined(ASIO_HAS_STD_ARRAY) -# include <boost/array.hpp> -#endif // defined(ASIO_HAS_STD_ARRAY) +#include <array> namespace asio { namespace detail { -#if defined(ASIO_HAS_STD_ARRAY) using std::array; -#else // defined(ASIO_HAS_STD_ARRAY) -using boost::array; -#endif // defined(ASIO_HAS_STD_ARRAY) } // namespace detail } // namespace asio |