diff --git a/src/headers/parsing/ParseComponents.hpp b/src/headers/parsing/ParseComponents.hpp index 3919b82..e4301b1 100644 --- a/src/headers/parsing/ParseComponents.hpp +++ b/src/headers/parsing/ParseComponents.hpp @@ -62,8 +62,10 @@ public: inline size_t size() const { return subComponents.size(); } inline bool empty() const { return size() == 0; } inline iterator begin() noexcept { return subComponents.begin(); } + inline constant_iterator begin() const noexcept { return cbegin(); } inline constant_iterator cbegin() const noexcept { return subComponents.cbegin(); } inline iterator end() noexcept { return subComponents.end(); } + inline constant_iterator end() const noexcept { return cend(); } inline constant_iterator cend() const noexcept { return subComponents.cend(); } IS_PARSECOMPONENT vector findById() const {