/*============================================================================= 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_EXPR_MAKE_EXPR_HPP #define SPROUT_WEED_EXPR_MAKE_EXPR_HPP #include #include #include #include #include namespace sprout { namespace weed { // // make_expr // template inline SPROUT_CONSTEXPR typename sprout::weed::traits::expr_of::type make_expr(Args&&... args) { return typename sprout::weed::traits::expr_of::type( sprout::weed::make_terminal_or_expr(sprout::forward(args))... ); } } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_EXPR_MAKE_EXPR_HPP