Skip to content

Commit

Permalink
Update Initializer.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Force67 committed Nov 14, 2021
1 parent 79c8435 commit 8a81b02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code/core/include/Initializer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace TiltedPhoques

static Initializer*& GetHead() noexcept;

static std::size_t RunAll();
static size_t RunAll();
};

inline Initializer::Initializer(Initializer*& aParent, TCallback aCallback) noexcept
Expand All @@ -47,9 +47,9 @@ namespace TiltedPhoques
return root;
}

inline std::size_t Initializer::RunAll()
inline size_t Initializer::RunAll()
{
std::size_t total = 0;
size_t total = 0;

for (Initializer* i = GetHead(); i;)
{
Expand Down

0 comments on commit 8a81b02

Please sign in to comment.