2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2012-11-12 04:29:56 +00:00
|
|
|
#ifndef SPROUT_WORKAROUND_RECURSIVE_FUNCTION_TEMPLATE_HPP
|
|
|
|
#define SPROUT_WORKAROUND_RECURSIVE_FUNCTION_TEMPLATE_HPP
|
|
|
|
|
2012-11-13 13:17:10 +00:00
|
|
|
#include <stdexcept>
|
2012-11-12 04:29:56 +00:00
|
|
|
#include <sprout/config.hpp>
|
2012-11-13 13:17:10 +00:00
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/utility/any_convertible.hpp>
|
2012-11-12 04:29:56 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
#include <sprout/preprocessor/stringize.hpp>
|
|
|
|
|
|
|
|
//
|
|
|
|
// SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT
|
|
|
|
//
|
|
|
|
#ifndef SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT
|
2013-06-17 14:44:18 +00:00
|
|
|
# if defined(__clang__)
|
|
|
|
# if (__clang_major__ < 3 || (__clang_major__ == 3 && __clang_major__ <= 2))
|
|
|
|
# define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT 512
|
|
|
|
# else
|
|
|
|
# define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT 256
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
# define SPROUT_RECURSIVE_FUNCTION_TEMPLATE_INSTANTIATION_LIMIT 512
|
|
|
|
# endif
|
2012-11-12 04:29:56 +00:00
|
|
|
#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)
|
|
|
|
|
2012-11-13 13:17:10 +00:00
|
|
|
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<typename T = sprout::any_convertible>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
throw_recursive_function_template_instantiation_exeeded() {
|
|
|
|
return throw sprout::recursive_function_template_instantiation_exeeded(), T();
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T&&
|
|
|
|
throw_recursive_function_template_instantiation_exeeded(T&& t) {
|
|
|
|
return throw sprout::recursive_function_template_instantiation_exeeded(), sprout::forward<T>(t);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-11-12 04:29:56 +00:00
|
|
|
#endif // #ifndef SPROUT_WORKAROUND_RECURSIVE_FUNCTION_TEMPLATE_HPP
|