diff --git a/include/RED4ext/Containers/DynArray.hpp b/include/RED4ext/Containers/DynArray.hpp index 56ae78b63..0b1ed0716 100644 --- a/include/RED4ext/Containers/DynArray.hpp +++ b/include/RED4ext/Containers/DynArray.hpp @@ -89,7 +89,7 @@ struct DynArray DynArray(TContainer&& aContainer, Memory::IAllocator* aAllocator = nullptr) : DynArray(aAllocator) { - Assign(std::make_move_iterator(aContainer.begin()), std::make_move_iterator(aContainer.end())) + Assign(std::make_move_iterator(aContainer.begin()), std::make_move_iterator(aContainer.end())); } ~DynArray() diff --git a/include/RED4ext/Detail/Containers/ArrayIterator.hpp b/include/RED4ext/Detail/Containers/ArrayIterator.hpp index a24b93e6c..defbef28b 100644 --- a/include/RED4ext/Detail/Containers/ArrayIterator.hpp +++ b/include/RED4ext/Detail/Containers/ArrayIterator.hpp @@ -6,7 +6,7 @@ namespace RED4ext::Detail { template -class ArrayIterator +class ArrayIterator // Designed and created by @wopss { public: using iterator_concept = std::contiguous_iterator_tag;