Selaa lähdekoodia

fixed minof

devel
Ludovic 'Archivist' Lagouardette 4 vuotta sitten
vanhempi
commit
4c4ff05b93
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      include/gp/algorithm/min_of.hpp

+ 1
- 1
include/gp/algorithm/min_of.hpp Näytä tiedosto

@ -11,7 +11,7 @@ namespace gp{
template<typename it, typename transform>
auto&& min_of(it beg, it end, transform fn = identity) {
gp_config::assertion(beg == end, "min_of provided with empty range");
gp_config::assertion(beg != end, "min_of provided with empty range");
auto fn_v = fn(*beg);
++beg;
while(beg != end) {

Ladataan…
Peruuta
Tallenna