1 // 2 // impl/src.cpp 3 // ~~~~~~~~~~~~ 4 // 5 // Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com) 6 // 7 // Distributed under the Boost Software License, Version 1.0. (See accompanying 8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 9 // 10 11 #if defined(_MSC_VER) \ 12 || (defined(__BORLANDC__) && !defined(__clang__)) \ 13 || defined(__DMC__) 14 # pragma message ( \ 15 "This file is deprecated. " \ 16 "Please #include <boost/asio/impl/src.hpp> instead.") 17 #elif defined(__GNUC__) \ 18 || defined(__HP_aCC) \ 19 || defined(__SUNPRO_CC) \ 20 || defined(__IBMCPP__) 21 # warning "This file is deprecated." 22 # warning "Please #include <boost/asio/impl/src.hpp> instead." 23 #endif 24 25 #include <boost/asio/impl/src.hpp> 26