From 7683641a7f9e1c44c260b74144dbf0bb215cccad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 11 Dec 2019 12:24:12 +0100 Subject: 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. --- source/blender/depsgraph/DEG_depsgraph_query.h | 2 ++ 1 file changed, 2 insertions(+) (limited to '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" -- cgit v1.2.3