Removed weak pointer type typo from TokenList.

This commit is contained in:
Tim Ambrogi 2022-05-19 10:18:23 -04:00
parent 4ffc4b106d
commit d6afbf3365

View File

@ -295,7 +295,7 @@ private:
void Sanitize() const void Sanitize() const
{ {
// Remove all invalid tokens // Remove all invalid tokens
m_tokens.RemoveAll([](const Wp<Token>& in_token) { return !in_token.IsValid(); }); m_tokens.RemoveAll([](const TWeakPtr<Token>& in_token) { return !in_token.IsValid(); });
} }
template <typename tFn> template <typename tFn>
void SanitizeAndProcessData(tFn in_dataFn) const void SanitizeAndProcessData(tFn in_dataFn) const