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:
authorMartijn Berger <mberger@denc.com>2016-11-07 14:32:00 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-01-20 13:36:54 +0300
commit3d75a7d0dca9f285370b57e31fb481e0d5a49c65 (patch)
tree7366b34e747eac75d895e931d869811ed105eb0c
parentfaa8b1271425c4be18074f9547d7b66a5110746b (diff)
fix building depsgraph after recent changes
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc2
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc1
2 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index e2fbf4374ad..3502267d9ca 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -51,6 +51,8 @@ extern "C" {
#include "RNA_access.h"
}
+#include <cstring>
+
#include "DEG_depsgraph.h"
#include "intern/nodes/deg_node.h"
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index 00907e417ff..e8ed03666a6 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -31,6 +31,7 @@
*/
#include <stdio.h>
+#include <cstring> /* required for memset */
#include <queue>
extern "C" {