Skip to content

Commit f6e6b18

Browse files
committed
Remove deprecated NWRIdSet class
1 parent 1676d38 commit f6e6b18

1 file changed

Lines changed: 0 additions & 20 deletions

File tree

include/osmium/index/id_set.hpp

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -503,26 +503,6 @@ namespace osmium {
503503

504504
}; // class IdSetSmall
505505

506-
/// @deprecated Use nwr_array helper class instead.
507-
template <template <typename> class IdSetType>
508-
class NWRIdSet {
509-
510-
using id_set_type = IdSetType<osmium::unsigned_object_id_type>;
511-
512-
std::array<id_set_type, 3> m_sets;
513-
514-
public:
515-
516-
id_set_type& operator()(osmium::item_type type) noexcept {
517-
return m_sets[osmium::item_type_to_nwr_index(type)];
518-
}
519-
520-
const id_set_type& operator()(osmium::item_type type) const noexcept {
521-
return m_sets[osmium::item_type_to_nwr_index(type)];
522-
}
523-
524-
}; // class NWRIdSet
525-
526506
} // namespace index
527507

528508
} // namespace osmium

0 commit comments

Comments
 (0)