Fixes invalid declaration
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2021-09-25 14:30:09 +02:00
parent a2b52c5ed5
commit b7c9944784
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ namespace ArbUt {
/// @return A std::vector representation of the current list.
std::vector<ValueT*>& GetStdList() noexcept { return _vector; }
inline OptionalUniquePtrList<ValueT>* GetListPointer() const { return this; }
inline UniquePtrList<ValueT>* GetListPointer() const { return this; }
};
}