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