123456789101112131415161718192021222324252627282930 |
- #ifndef ASIO_DETAIL_ARRAY_HPP
- #define ASIO_DETAIL_ARRAY_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include <array>
- namespace asio {
- namespace detail {
- using std::array;
- }
- }
- #endif
|