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_query.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_query.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_query.cc b/source/blender/depsgraph/intern/depsgraph_query.cc
index d0eedd6d811..57de62e1880 100644
--- a/source/blender/depsgraph/intern/depsgraph_query.cc
+++ b/source/blender/depsgraph/intern/depsgraph_query.cc
@@ -25,7 +25,7 @@
#include "MEM_guardedalloc.h"
-#include <string.h> /* XXX: memcpy */
+#include <cstring> /* XXX: memcpy */
#include "BLI_listbase.h"
#include "BLI_utildefines.h"
@@ -90,8 +90,8 @@ bool DEG_id_type_any_updated(const Depsgraph *graph)
const deg::Depsgraph *deg_graph = reinterpret_cast<const deg::Depsgraph *>(graph);
/* Loop over all ID types. */
- for (int id_type_index = 0; id_type_index < MAX_LIBARRAY; id_type_index++) {
- if (deg_graph->id_type_updated[id_type_index]) {
+ for (char id_type_index : deg_graph->id_type_updated) {
+ if (id_type_index) {
return true;
}
}