/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_MEMORY_GET_POINTER_HPP #define SPROUT_MEMORY_GET_POINTER_HPP #include #include namespace sprout { // // get_pointer // template inline SPROUT_CONSTEXPR T* get_pointer(T* p) SPROUT_NOEXCEPT { return p; } template inline SPROUT_NON_CONSTEXPR T* get_pointer(std::auto_ptr const& p) SPROUT_NOEXCEPT { return p.get(); } #if !defined(SPROUT_NO_CXX11_SMART_PTR) template inline SPROUT_NON_CONSTEXPR T* get_pointer(std::unique_ptr const& p) SPROUT_NOEXCEPT { return p.get(); } template inline SPROUT_NON_CONSTEXPR T* get_pointer(std::shared_ptr const& p) SPROUT_NOEXCEPT { return p.get(); } #endif } // namespace sprout #endif // #ifndef SPROUT_MEMORY_GET_POINTER_HPP