1234567891011121314151617181920212223242526272829303132 |
- #ifndef ASIO_DETAIL_ARRAY_FWD_HPP
- #define ASIO_DETAIL_ARRAY_FWD_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- namespace boost {
- template<class T, std::size_t N>
- class array;
- }
- #include <array>
- #endif
|