1 #ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
2 #define BOOST_CHECKED_DELETE_HPP_INCLUDED
4 // MS compatible compilers support #pragma once
6 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
11 // boost/checked_delete.hpp
13 // Copyright (c) 2002, 2003 Peter Dimov
14 // Copyright (c) 2003 Daniel Frey
15 // Copyright (c) 2003 Howard Hinnant
17 // Distributed under the Boost Software License, Version 1.0. (See
18 // accompanying file LICENSE_1_0.txt or copy at
19 // http://www.boost.org/LICENSE_1_0.txt)
21 // See http://www.boost.org/libs/utility/checked_delete.html for documentation.
27 // verify that types are complete for increased safety
29 template<class T
> inline void checked_delete(T
* x
)
31 // intentionally complex - simplification causes regressions
32 typedef char type_must_be_complete
[ sizeof(T
)? 1: -1 ];
33 (void) sizeof(type_must_be_complete
);
37 template<class T
> inline void checked_array_delete(T
* x
)
39 typedef char type_must_be_complete
[ sizeof(T
)? 1: -1 ];
40 (void) sizeof(type_must_be_complete
);
44 template<class T
> struct checked_deleter
46 typedef void result_type
;
47 typedef T
* argument_type
;
49 void operator()(T
* x
) const
51 // boost:: disables ADL
52 boost::checked_delete(x
);
56 template<class T
> struct checked_array_deleter
58 typedef void result_type
;
59 typedef T
* argument_type
;
61 void operator()(T
* x
) const
63 boost::checked_array_delete(x
);
69 #endif // #ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED