Skip to content

Commit

Permalink
Fixed typo in example.cc (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
improbable-til authored Dec 3, 2021
1 parent 0d7d141 commit 59aaa7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ int main() {
}
std::cout << std::endl;

std::cout << "All points in range:" << p1 << "/" << p2 << std::endl;
std::cout << "All points in range:" << p2 << "/" << p4 << std::endl;
for (auto it = tree.begin_query({p2, p4}); it != tree.end(); ++it) {
std::cout << " " << it.second() << " -> " << it.first() << std::endl;
}
Expand Down

0 comments on commit 59aaa7d

Please sign in to comment.