Fix missing type declaration compile error

rBbd3bd776c893 broke compilation here due to missing type declaration
for basic types as the source file is not including this header. In any
case, it is the responsibility of header files to include headers for
types used by value in function parameters or struct definitions.
This commit is contained in:
Kévin Dietrich 2021-12-23 08:01:43 +01:00
parent 41f3164e57
commit 710e279b19
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@
* \ingroup bke
*/
#include "BLI_sys_types.h"
#ifdef __cplusplus
extern "C" {
#endif