src.cpp 712 B

12345678910111213141516171819202122232425
  1. //
  2. // impl/src.cpp
  3. // ~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2019 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. #if defined(_MSC_VER) \
  11. || defined(__BORLANDC__) \
  12. || defined(__DMC__)
  13. # pragma message ( \
  14. "This file is deprecated. " \
  15. "Please #include <boost/asio/impl/src.hpp> instead.")
  16. #elif defined(__GNUC__) \
  17. || defined(__HP_aCC) \
  18. || defined(__SUNPRO_CC) \
  19. || defined(__IBMCPP__)
  20. # warning "This file is deprecated."
  21. # warning "Please #include <boost/asio/impl/src.hpp> instead."
  22. #endif
  23. #include <boost/asio/impl/src.hpp>