#ifndef SPROUT_WORKAROUND_RECURSIVE_FUNCTION_TEMPLATE_HPP #define SPROUT_WORKAROUND_RECURSIVE_FUNCTION_TEMPLATE_HPP #include #include #include #include #include #include // // SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT // #ifndef SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT # define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT 512 #endif // // SPROUT_RECURSIVE_FUNCTION_TEMPLATE_CONTINUE_DECL // SPROUT_RECURSIVE_FUNCTION_TEMPLATE_BREAK_DECL // #define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_CONTINUE_DECL(depth) \ typename sprout::enabler_if<((depth) < SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT - 1)>::type #define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_BREAK_DECL(depth) \ typename sprout::enabler_if<((depth) >= SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT - 1)>::type // // SPROUT_RECURSIVE_FUNCTION_TEMPLATE_CONTINUE // SPROUT_RECURSIVE_FUNCTION_TEMPLATE_BREAK // #define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_CONTINUE(depth) \ SPROUT_RECURSIVE_FUNCTION_TEMPLATE_CONTINUE_DECL(depth) = sprout::enabler #define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_BREAK(depth) \ SPROUT_RECURSIVE_FUNCTION_TEMPLATE_BREAK_DECL(depth) = sprout::enabler // // SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_EXCEEDED_MESSAGE // #define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_EXCEEDED_MESSAGE \ "recursive template instantiation exceeded maximum depth of " SPROUT_PP_STRINGIZE(SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT) namespace sprout { // // recursive_function_template_instantiation_exeeded // class recursive_function_template_instantiation_exeeded : public std::runtime_error { public: recursive_function_template_instantiation_exeeded() SPROUT_NOEXCEPT : std::runtime_error(SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_EXCEEDED_MESSAGE) {} }; // // throw_recursive_function_template_instantiation_exeeded // template inline SPROUT_CONSTEXPR T throw_recursive_function_template_instantiation_exeeded() { return throw sprout::recursive_function_template_instantiation_exeeded(), T(); } template inline SPROUT_CONSTEXPR T&& throw_recursive_function_template_instantiation_exeeded(T&& t) { return throw sprout::recursive_function_template_instantiation_exeeded(), sprout::forward(t); } } // namespace sprout #endif // #ifndef SPROUT_WORKAROUND_RECURSIVE_FUNCTION_TEMPLATE_HPP