/*============================================================================= Copyright (c) 2011-2013 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_WEED_TRAITS_EXPR_EXPR_OF_HPP #define SPROUT_WEED_TRAITS_EXPR_EXPR_OF_HPP #include #include #include #include #include namespace sprout { namespace weed { namespace traits { // // expr_of // template struct expr_of : public sprout::identity< sprout::weed::expr< Tag, typename sprout::weed::traits::terminal_or_expr_of< typename std::remove_reference::type >::type... > > {}; } // namespace traits } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_TRAITS_EXPR_EXPR_OF_HPP