From ddf6f70049e5a9f537ce15a5412bb67b4229ef43 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 26 Sep 2022 21:11:44 +0200 Subject: Fix build errors and warnings after recent changes, when not using Unity build --- source/blender/compositor/intern/COM_ChunkOrder.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/intern/COM_ChunkOrder.h b/source/blender/compositor/intern/COM_ChunkOrder.h index 927eab97ccd..ef65d90dd3a 100644 --- a/source/blender/compositor/intern/COM_ChunkOrder.h +++ b/source/blender/compositor/intern/COM_ChunkOrder.h @@ -7,20 +7,22 @@ # include "MEM_guardedalloc.h" #endif +#include "BLI_sys_types.h" + #include "COM_ChunkOrderHotspot.h" namespace blender::compositor { /** Helper to determine the order how chunks are prioritized during execution. */ struct ChunkOrder { - unsigned int index = 0; + uint index = 0; int x = 0; int y = 0; double distance = 0.0; friend bool operator<(const ChunkOrder &a, const ChunkOrder &b); - void update_distance(ChunkOrderHotspot *hotspots, unsigned int len_hotspots); + void update_distance(ChunkOrderHotspot *hotspots, uint len_hotspots); #ifdef WITH_CXX_GUARDEDALLOC MEM_CXX_CLASS_ALLOC_FUNCS("COM:ChunkOrderHotspot") -- cgit v1.2.3