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

@@ -130,7 +130,7 @@ void FoliageType::Serialize(SerializeStream& stream, const void* otherObj)
SERIALIZE(Model);
const std::function<bool(const ModelInstanceEntry&)> IsValidMaterial = [](const ModelInstanceEntry& e) -> bool
const Function<bool(const ModelInstanceEntry&)> IsValidMaterial = [](const ModelInstanceEntry& e) -> bool
{
return e.Material;
};