From 964375e36a2b2a56d12201a3a96dd4572e0a8827 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Tue, 17 Mar 2020 10:12:47 -0600 Subject: Cleanup: blenkernel proper header inclusion for BKE_ocean.h BKE_ocean.h uses the bool type without including stdbool.h counting on someone else including that before it. With D6811 enabling automatic sorting of the includes this can no longer be counted on. This changes includes stdbool.h in BKE_ocean.h so it can build without being depended on others including the right headers before it. --- source/blender/blenkernel/BKE_ocean.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/blenkernel') diff --git a/source/blender/blenkernel/BKE_ocean.h b/source/blender/blenkernel/BKE_ocean.h index d3ac825039d..6ce2e13cf18 100644 --- a/source/blender/blenkernel/BKE_ocean.h +++ b/source/blender/blenkernel/BKE_ocean.h @@ -17,6 +17,8 @@ #ifndef __BKE_OCEAN_H__ #define __BKE_OCEAN_H__ +#include + /** \file * \ingroup bli */ -- cgit v1.2.3