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:
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 d34b6d724cb..d96c621f4b2 100644
--- a/source/blender/depsgraph/intern/depsgraph_type.h
+++ b/source/blender/depsgraph/intern/depsgraph_type.h
@@ -36,6 +36,8 @@
#include <string>
#include <vector>
#include <algorithm>
+#include <map>
+#include <unordered_map>
struct Depsgraph;
@@ -46,10 +48,14 @@ namespace DEG {
/* Commonly used types. */
using std::string;
using std::vector;
+using std::map;
+using std::pair;
+using std::unordered_map;
/* Commonly used functions. */
using std::max;
using std::to_string;
+using std::make_pair;
/* Function bindings. */
using std::function;