Fix: Build error with BLI_virtual_array.hh

BLI_virtual_array.hh relies on the <functional> header
without including it, leading to build errors.
This commit is contained in:
Ray Molenkamp
2025-09-11 07:30:52 -06:00
parent 790033e0c3
commit 0bd3e7e213

View File

@@ -25,6 +25,7 @@
* see if the increased compile time and binary size is worth it.
*/
#include <functional>
#include <optional>
#include "BLI_any.hh"