[Bf-blender-cvs] [6e87612da83] temp-sybren-usd-patch-02: Depsgraph: add missing #include to DEG_depsgraph_query.h

Sybren A. Stüvel noreply at git.blender.org
Wed Dec 11 16:36:55 CET 2019


Commit: 6e87612da83f103b8e4ec55d73b3a1067f25b6b9
Author: Sybren A. Stüvel
Date:   Wed Dec 11 12:24:12 2019 +0100
Branches: temp-sybren-usd-patch-02
https://developer.blender.org/rB6e87612da83f103b8e4ec55d73b3a1067f25b6b9

Depsgraph: add missing #include to DEG_depsgraph_query.h

The `DEG_depsgraph_query.h` file uses the `ITER_BEGIN` and `ITER_END`
macros defined in `BLI_iterator.h` without including that header.

No functional changes.

===================================================================

M	source/blender/depsgraph/DEG_depsgraph_query.h

===================================================================

diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h
index fb456611b15..c8ddffa57c7 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -26,6 +26,8 @@
 #ifndef __DEG_DEPSGRAPH_QUERY_H__
 #define __DEG_DEPSGRAPH_QUERY_H__
 
+#include "BLI_iterator.h"
+
 #include "DEG_depsgraph.h"
 #include "DEG_depsgraph_build.h"



More information about the Bf-blender-cvs mailing list