Skip to content

Commit f082a35

Browse files
committed
Remove unused binary search function
1 parent 60987b4 commit f082a35

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/idlist.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ class idlist_t
5151

5252
osmid_t operator[](std::size_t n) const noexcept { return m_list[n]; }
5353

54-
bool get_binary_search(osmid_t id) const noexcept
55-
{
56-
return std::binary_search(m_list.cbegin(), m_list.cend(), id);
57-
}
58-
5954
void clear() { m_list.clear(); }
6055

6156
void push_back(osmid_t id) { m_list.push_back(id); }

0 commit comments

Comments
 (0)