Ver a proveniência

fixed minof

devel
Ludovic 'Archivist' Lagouardette há 4 anos
ascendente
cometimento
4c4ff05b93
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      include/gp/algorithm/min_of.hpp

+ 1
- 1
include/gp/algorithm/min_of.hpp Ver ficheiro

@ -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) {

Carregando…
Cancelar
Guardar