Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
694B

  1. //
  2. // impl/src.cpp
  3. // ~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 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 <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 <asio/impl/src.hpp> instead."
  22. #endif
  23. #include "asio/impl/src.hpp"