Skip to content

Commit

Permalink
Fix mistake & ArrayIterator crediting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mozz3d committed Feb 11, 2025
1 parent 6080dc9 commit 00a2473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/RED4ext/Containers/DynArray.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion include/RED4ext/Detail/Containers/ArrayIterator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace RED4ext::Detail
{
template<typename T, typename Container>
class ArrayIterator
class ArrayIterator // Designed and created by @wopss
{
public:
using iterator_concept = std::contiguous_iterator_tag;
Expand Down

0 comments on commit 00a2473

Please sign in to comment.