Remove std::function usage from ArrayExtensions

This commit is contained in:
Wojtek Figat
2023-10-02 12:52:44 +02:00
parent 41f005f95b
commit 8bafdb0b78
6 changed files with 11 additions and 13 deletions

View File

@@ -66,7 +66,7 @@ public:
const auto parentModelIndex = node.ParentIndex;
// Find matching node in skeleton (or map to best parent)
const std::function<bool(const T&)> f = [node](const T& x) -> bool
const Function<bool(const T&)> f = [node](const T& x) -> bool
{
return x.Name == node.Name;
};