mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-06 14:24:09 +00:00
fix recursion depth: all_of_equal, any_of_equal, none_of_equal, one_of_equal
This commit is contained in:
parent
750e3b944d
commit
bc04943aaa
10 changed files with 394 additions and 9 deletions
|
@ -41,6 +41,10 @@
|
|||
#include "./max_element.cpp"
|
||||
#include "./minmax_element.cpp"
|
||||
#include "./lexicographical_compare.cpp"
|
||||
#include "./all_of_equal.cpp"
|
||||
#include "./any_of_equal.cpp"
|
||||
#include "./none_of_equal.cpp"
|
||||
#include "./one_of_equal.cpp"
|
||||
|
||||
#ifdef TESTSPR_CPP_INCLUDE_DISABLE_SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
|
||||
# undef TESTSPR_CPP_INCLUDE
|
||||
|
@ -83,6 +87,10 @@ namespace testspr {
|
|||
testspr::algorithm_max_element_test();
|
||||
testspr::algorithm_minmax_element_test();
|
||||
testspr::algorithm_lexicographical_compare_test();
|
||||
testspr::algorithm_all_of_equal_test();
|
||||
testspr::algorithm_any_of_equal_test();
|
||||
testspr::algorithm_none_of_equal_test();
|
||||
testspr::algorithm_one_of_equal_test();
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue