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.
This commit is contained in:
Sybren A. Stüvel 2019-12-11 12:24:12 +01:00
parent f5e37af5a8
commit 7683641a7f
1 changed files with 2 additions and 0 deletions

View File

@ -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"