From f359aee3bdf0f459228e298038b6be63efdd914e Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Tue, 14 Oct 2025 15:22:27 +0200 Subject: [PATCH] Fix #148031: Build issue on Windows x64 with missing include This issue was introduced by 1d372bdc8b and only shows up when doing a release build without `-DWITH_ASSERT_RELEASE=ON -DWITH_ASSERT_ABORT=ON`. Pull Request: https://projects.blender.org/blender/blender/pulls/147296 --- source/blender/editors/transform/transform_convert_pointcloud.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/transform/transform_convert_pointcloud.cc b/source/blender/editors/transform/transform_convert_pointcloud.cc index b9905c87932..0d7a46d9cb6 100644 --- a/source/blender/editors/transform/transform_convert_pointcloud.cc +++ b/source/blender/editors/transform/transform_convert_pointcloud.cc @@ -9,6 +9,7 @@ #include "BLI_array.hh" #include "BLI_array_utils.hh" #include "BLI_math_matrix.h" +#include "BLI_math_matrix.hh" #include "BLI_span.hh" #include "DNA_pointcloud_types.h"