Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
fixed narrowing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
vaclavblazek committed Jul 26, 2017
1 parent c41344d commit d125fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapproxy/src/mapproxy/support/mmapped/qtree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ struct QTree::Node {
{}

Node child(unsigned int ix = 0, unsigned int iy = 0) const {
return { size >> 1, depth + 1, x + ix, y + iy };
return Node(size >> 1, depth + 1, x + ix, y + iy);
}

template <typename Op>
Expand Down

0 comments on commit d125fb2

Please sign in to comment.