1
1

Kernel: include header file in BKE_appdir.h defining size_t

In `BKE_appdir.h`, include `<stddef.h>` as that defines `size_t`. This
follows the "include what you use" principle, and makes it possible to
use `BKE_appdir.h` without having to bother with its dependencies.

No functional changes.
This commit is contained in:
2021-07-30 12:46:44 +02:00
parent 020431408f
commit b98735ec29

View File

@@ -15,6 +15,8 @@
*/
#pragma once
#include <stddef.h>
/** \file
* \ingroup bli
*/