Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharlie Jolly <charlie>2021-09-23 21:33:27 +0300
committerRay Molenkamp <github@lazydodo.com>2021-09-23 21:33:27 +0300
commit7fb2b50e5dace1eeaa777965c445f85b708eaae0 (patch)
tree579d194834ec35d1aac227d91be59caf06fbb63e
parentfc2255135e31679d51edf0652caca1462f75c3d4 (diff)
Fix: Build issue with MSVC
header for std::function was not included reported/fixed by Charlie on chat
-rw-r--r--source/blender/editors/include/UI_tree_view.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/include/UI_tree_view.hh b/source/blender/editors/include/UI_tree_view.hh
index dd1a0af2dc0..fac880a0a67 100644
--- a/source/blender/editors/include/UI_tree_view.hh
+++ b/source/blender/editors/include/UI_tree_view.hh
@@ -20,6 +20,7 @@
#pragma once
+#include <functional>
#include <memory>
#include <string>