boost/signals2/detail/result_type_wrapper.hpp
// Boost.Signals2 library // Copyright Douglas Gregor 2001-2004. // Copyright Frank Mori Hess 2007. Use, modification and // distribution is subject to 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) // For more information, see http://www.boost.org #ifndef BOOST_SIGNALS2_RESULT_TYPE_WRAPPER_HPP #define BOOST_SIGNALS2_RESULT_TYPE_WRAPPER_HPP #include <boost/config.hpp> namespace boost { namespace signals2 { namespace detail { // A placeholder for void on compilers that don't support void returns struct void_type {}; // Replaces void with void_type template<typename R> struct nonvoid { typedef R type; }; template<> struct nonvoid<void> { typedef void_type type; }; // Replaces void with void_type only if compiler doesn't support void returns template<typename R> struct result_type_wrapper { typedef R type; }; #ifdef BOOST_NO_VOID_RETURNS template<> struct result_type_wrapper<void> { typedef void_type type; }; #endif } // end namespace detail } // end namespace signals2 } // end namespace boost #endif // BOOST_SIGNALS2_RESULT_TYPE_WRAPPER_HPP