123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef BOOST_CORE_NULL_DELETER_HPP
- #define BOOST_CORE_NULL_DELETER_HPP
- #include <boost/config.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- namespace null_deleter_ns {
- struct null_deleter
- {
-
- typedef void result_type;
-
- template< typename T >
- void operator() (T*) const BOOST_NOEXCEPT {}
- };
- }
- using null_deleter_ns::null_deleter;
- }
- #endif
|