소스 검색

fixed minof

devel
Ludovic 'Archivist' Lagouardette 4 년 전
부모
커밋
4c4ff05b93
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      include/gp/algorithm/min_of.hpp

+ 1
- 1
include/gp/algorithm/min_of.hpp 파일 보기

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

불러오는 중...
취소
저장