|
|
@@ -203,14 +203,12 @@ public:
|
|
|
} else {
|
|
|
func();
|
|
|
}
|
|
|
- } else {
|
|
|
- if constexpr(std::is_invocable_r_v<bool, Func, Ret>) {
|
|
|
- if(func(calls[pos - 1u](args...))) {
|
|
|
- break;
|
|
|
- }
|
|
|
- } else {
|
|
|
- func(calls[pos - 1u](args...));
|
|
|
+ } else if constexpr(std::is_invocable_r_v<bool, Func, Ret>) {
|
|
|
+ if(func(calls[pos - 1u](args...))) {
|
|
|
+ break;
|
|
|
}
|
|
|
+ } else {
|
|
|
+ func(calls[pos - 1u](args...));
|
|
|
}
|
|
|
}
|
|
|
}
|