diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-08-24 14:08:25 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-08-24 14:08:25 +0200 |
commit | b8e6949dfb8a88c832e82f8b7e853fe0ed462da0 (patch) | |
tree | 596f3f33b44aee1feb4d28477f4270ad826434b2 /include/SafeVector.hpp | |
parent | 54c60d9a18d103011a12939c5029dd35a8e9e200 (diff) |
Remove scrollable page from gsr page, fix crash when navigating back
Diffstat (limited to 'include/SafeVector.hpp')
-rw-r--r-- | include/SafeVector.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SafeVector.hpp b/include/SafeVector.hpp index cea9cb9..916b547 100644 --- a/include/SafeVector.hpp +++ b/include/SafeVector.hpp @@ -21,7 +21,7 @@ public: } // Might not remove the data immediately if inside for_each loop. - // In that case the item is remove at the end of the loop. + // In that case the item is removed at the end of the loop. void remove(PointerType item_to_remove) { if(for_each_depth == 0) remove_item(item_to_remove); |