ChipMaster's trial hacks on C++CMS starting with v1.2.1. Not sure I'll follow on with the v2 since it looks to be breaking and mostly frivolous.
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.
 
 
 
 
 
 

25 lines
565 B

  1. //
  2. // Copyright (C) 2009-2017 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. #ifndef BOOSTER_AUTO_PTR_INC_H
  9. #define BOOSTER_AUTO_PTR_INC_H
  10. #if __cplusplus >= 201103L
  11. # include <functional>
  12. # if defined __GLIBCXX__
  13. # include <bits/c++config.h>
  14. # ifdef _GLIBCXX_DEPRECATED
  15. # undef _GLIBCXX_DEPRECATED
  16. # define _GLIBCXX_DEPRECATED
  17. # endif
  18. # endif
  19. #endif
  20. #include <memory>
  21. #endif // BOOSTER_AUTO_PTR_INC_H