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:
authorJacques Lucke <jacques@blender.org>2020-04-29 12:37:19 +0300
committerJacques Lucke <jacques@blender.org>2020-04-29 12:37:19 +0300
commit157f8364935402aed8024a2bd90348662fbb49b3 (patch)
treed87c08fd3d191d478ce50a321fdf54c6aaf1d7a7 /source/blender/depsgraph/intern/depsgraph_type.h
parent657188c1a240eececd4aec95f97fe1b96c140070 (diff)
Depsgraph: use native BLI data structures in registry
Reviewers: sergey Differential Revision: https://developer.blender.org/D7559
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_type.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_type.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_type.h b/source/blender/depsgraph/intern/depsgraph_type.h
index 6417f49e1ae..7016d07ae72 100644
--- a/source/blender/depsgraph/intern/depsgraph_type.h
+++ b/source/blender/depsgraph/intern/depsgraph_type.h
@@ -44,6 +44,7 @@
#include "BLI_set.hh"
#include "BLI_string_ref.hh"
#include "BLI_vector.hh"
+#include "BLI_vector_set.hh"
struct Depsgraph;
@@ -58,6 +59,7 @@ using BLI::Set;
using BLI::StringRef;
using BLI::StringRefNull;
using BLI::Vector;
+using BLI::VectorSet;
using std::deque;
using std::map;
using std::pair;