mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix macros for noexcept
This commit is contained in:
parent
23f24450b0
commit
979af136a1
125 changed files with 324 additions and 287 deletions
|
@ -31,19 +31,19 @@
|
|||
// 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
|
||||
#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
|
||||
#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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue