Skip to content

Commit ed70828

Browse files
committed
Fix namespace.
1 parent 835df8a commit ed70828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/osmium/area/assembler.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ namespace osmium {
10861086
// Join all (open) rings in the candidate to get one closed ring.
10871087
assert(chosen_cand->rings.size() > 1);
10881088
const auto& first_ring = chosen_cand->rings.front().first;
1089-
const ProtoRing& remaining_ring = first_ring.ring();
1089+
const detail::ProtoRing& remaining_ring = first_ring.ring();
10901090
for (auto it = std::next(chosen_cand->rings.begin()); it != chosen_cand->rings.end(); ++it) {
10911091
merge_two_rings(open_ring_its, first_ring, it->first);
10921092
}

0 commit comments

Comments
 (0)