From 37c942632d3a06411aa738ee55d674c3235cdcb7 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Mon, 9 Mar 2026 22:56:05 -0500 Subject: [PATCH] Remove iterator methods from Branches class --- src/branches.hpp | 7 ------- 1 file changed, 7 deletions(-) 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(); };