Skip to content

Commit

Permalink
Fix iterator type
Browse files Browse the repository at this point in the history
  • Loading branch information
Foereaper committed Aug 6, 2024
1 parent d514f9d commit 2eefece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElunaTemplate.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class ElunaTemplate
}

// load all core-specific methods
for (int i = 0; i < N; i++)
for (std::size_t i = 0; i < N; i++)
{
const auto& method = methodTable + i;

Expand Down

0 comments on commit 2eefece

Please sign in to comment.