Skip to content

Commit

Permalink
CICD: Fix macos fail
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Sep 23, 2023
1 parent 68013de commit 6d8383a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ECS/SparseArray.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ template <typename Component> class SparseArray {
return _components[idx];
}

auto begin() -> std::list<std::optional<Component>>::iterator
auto begin() -> typename std::list<std::optional<Component>>::iterator
{
return _components.begin();
}

auto end() -> std::list<std::optional<Component>>::iterator
auto end() -> typename std::list<std::optional<Component>>::iterator
{
return _components.end();
}
Expand Down

0 comments on commit 6d8383a

Please sign in to comment.