We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60987b4 commit f082a35Copy full SHA for f082a35
src/idlist.hpp
@@ -51,11 +51,6 @@ class idlist_t
51
52
osmid_t operator[](std::size_t n) const noexcept { return m_list[n]; }
53
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
-
59
void clear() { m_list.clear(); }
60
61
void push_back(osmid_t id) { m_list.push_back(id); }
0 commit comments