fix recursion depth: min_element, max_element, minmax_element

This commit is contained in:
bolero-MURAKAMI 2012-12-16 21:46:16 +09:00
parent 86f68671a1
commit 1c085cb707
10 changed files with 539 additions and 17 deletions

View file

@ -34,6 +34,12 @@
#include "./includes.cpp"
#include "./is_heap.cpp"
#include "./is_heap_until.cpp"
#include "./min.cpp"
#include "./max.cpp"
#include "./minmax.cpp"
#include "./min_element.cpp"
#include "./max_element.cpp"
#include "./minmax_element.cpp"
#ifdef TESTSPR_CPP_INCLUDE_DISABLE_SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
# undef TESTSPR_CPP_INCLUDE
@ -69,6 +75,12 @@ namespace testspr {
testspr::algorithm_includes_test();
testspr::algorithm_is_heap_test();
testspr::algorithm_is_heap_until_test();
testspr::algorithm_min_test();
testspr::algorithm_max_test();
testspr::algorithm_minmax_test();
testspr::algorithm_min_element_test();
testspr::algorithm_max_element_test();
testspr::algorithm_minmax_element_test();
}
} // namespace testspr