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-28 16:56:53 +0300
committerJacques Lucke <jacques@blender.org>2020-04-28 16:56:53 +0300
commit69e8de434ffda6b0135b7d0656bc29d60b9dca08 (patch)
tree0916ca2a9bd94f87be192802697b268515d9d060 /source/blender/depsgraph/intern/depsgraph_type.h
parent6278b48ea18cc93cc49eb1515d937fd1edc84537 (diff)
Depsgraph: use BLI::Map in RootPChanMap
Reviewers: sergey, sybren Differential Revision: https://developer.blender.org/D7521
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_type.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_type.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_type.h b/source/blender/depsgraph/intern/depsgraph_type.h
index 2b8b5471d0f..6b07f95bed6 100644
--- a/source/blender/depsgraph/intern/depsgraph_type.h
+++ b/source/blender/depsgraph/intern/depsgraph_type.h
@@ -43,6 +43,8 @@
#include "BLI_map.hh"
#include "BLI_set.hh"
+#include "BLI_string_ref.hh"
+#include "BLI_vector.hh"
struct Depsgraph;
@@ -51,8 +53,12 @@ struct CustomData_MeshMasks;
namespace DEG {
/* Commonly used types. */
+using BLI::ArrayRef;
using BLI::Map;
using BLI::Set;
+using BLI::StringRef;
+using BLI::StringRefNull;
+using BLI::Vector;
using std::deque;
using std::map;
using std::pair;