From b98735ec296f0c50f17f52f8c9b33f7cebc2b234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 30 Jul 2021 12:46:44 +0200 Subject: Kernel: include header file in BKE_appdir.h defining size_t In `BKE_appdir.h`, include `` 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. --- source/blender/blenkernel/BKE_appdir.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/blenkernel/BKE_appdir.h b/source/blender/blenkernel/BKE_appdir.h index c9d671597e8..15045a1c643 100644 --- a/source/blender/blenkernel/BKE_appdir.h +++ b/source/blender/blenkernel/BKE_appdir.h @@ -15,6 +15,8 @@ */ #pragma once +#include + /** \file * \ingroup bli */ -- cgit v1.2.3