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:
authorJulian Eisel <julian@blender.org>2022-08-17 22:00:22 +0300
committerJulian Eisel <julian@blender.org>2022-08-17 22:00:22 +0300
commit0be6427429c46278096dde01fc411424fb13a4d0 (patch)
tree5afaf81d31ffab33b1f2ca01b66cde715ff4262f /source/blender/editors/space_outliner/space_outliner.cc
parentd8223bdc38202c1ddd8e5cf2a4f3ec6136d9e316 (diff)
Outliner: Compile outliner tree-hashing files in C++
Some performance issues were found here with a heavy production file and we want to look into using some C++ to improve things for this ancient code.
Diffstat (limited to 'source/blender/editors/space_outliner/space_outliner.cc')
-rw-r--r--source/blender/editors/space_outliner/space_outliner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.cc b/source/blender/editors/space_outliner/space_outliner.cc
index 15aafe9c692..80dd97c406a 100644
--- a/source/blender/editors/space_outliner/space_outliner.cc
+++ b/source/blender/editors/space_outliner/space_outliner.cc
@@ -16,7 +16,7 @@
#include "BKE_context.h"
#include "BKE_lib_remap.h"
-#include "BKE_outliner_treehash.h"
+#include "BKE_outliner_treehash.hh"
#include "BKE_screen.h"
#include "ED_screen.h"