Commit: 90ba0d65938f29e4c4ec4c12fc5c812a7abfa6d1 Author: Sybren A. Stüvel Date: Thu Jun 20 17:01:50 2019 +0200 Branches: sybren-usd https://developer.blender.org/rB90ba0d65938f29e4c4ec4c12fc5c812a7abfa6d1
Include BLI_iterator.h in DEG_depsgraph_query.h The `DEG_xxx_ITER_yyy` iterators need the `ITER_BEGIN` and `ITER_END` macros defined in BLI_iterator.h. =================================================================== 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 4148529d3f8..e612a58c410 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" _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
