diff --git a/src/branches.hpp b/src/branches.hpp index 1607f926..cf4c1d11 100644 --- a/src/branches.hpp +++ b/src/branches.hpp @@ -85,13 +85,6 @@ public: operator Ptr() const { return std::atomic_load(&_impl); } Ptr operator->() const { return std::atomic_load(&_impl); } -public: - Impl::iterator begin() { return _impl->begin(); } - Impl::iterator end() { return _impl->end(); } - Impl::const_iterator begin() const { return _impl->begin(); } - Impl::const_iterator end() const { return _impl->end(); } - - public: void find_and_set_mode_ro(); };