CppCMS
auto_ptr_inc.h
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 
11 #if __cplusplus >= 201103L
12 # include <functional>
13 # if defined __GLIBCXX__
14 # include <bits/c++config.h>
15 # ifdef _GLIBCXX_DEPRECATED
16 # undef _GLIBCXX_DEPRECATED
17 # define _GLIBCXX_DEPRECATED
18 # endif
19 # endif
20 #endif
21 
22 #include <memory>
23 
24 #endif // BOOSTER_AUTO_PTR_INC_H