Skip to content

Commit 8ae4a5f

Browse files
Merge pull request OSGeo#11880 from georgthegreat/patch-2
Fix build when iterators are raw pointers
1 parent 6d20ab9 commit 8ae4a5f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/argparse/argparse.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1007,8 +1007,7 @@ class Argument {
10071007
if ((dist = static_cast<std::size_t>(std::distance(start, end))) >=
10081008
num_args_min) {
10091009
if (num_args_max < dist) {
1010-
end = std::next(start, static_cast<typename Iterator::difference_type>(
1011-
num_args_max));
1010+
end = std::next(start, num_args_max);
10121011
}
10131012
if (!m_accepts_optional_like_value) {
10141013
end = std::find_if(

0 commit comments

Comments
 (0)