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.
 
 
 
 
 
 

22 lines
514 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. #include <functional>
  11. #if defined __GLIBCXX__
  12. # include <bits/c++config.h>
  13. # ifdef _GLIBCXX_DEPRECATED
  14. # undef _GLIBCXX_DEPRECATED
  15. # define _GLIBCXX_DEPRECATED
  16. # endif
  17. #endif
  18. #include <memory>
  19. #endif // BOOSTER_AUTO_PTR_INC_H