/*============================================================================= 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_VARIANT_APPLY_VISITOR_HPP #define SPROUT_VARIANT_APPLY_VISITOR_HPP #include #include #include #include namespace sprout { // // apply_visitor // template inline SPROUT_CONSTEXPR typename sprout::visitor_result< typename std::remove_reference::type, typename std::remove_reference::type >::type apply_visitor(Visitor&& visitor, Visitable&& visitable) { return sprout::forward(visitable).apply_visitor(sprout::forward(visitor)); } } // namespace sprout #endif // #ifndef SPROUT_VARIANT_APPLY_VISITOR_HPP