From 484c1b8cd1331545f528c27dae907cc14e9b2d6e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 1 Apr 2025 18:13:42 +0200 Subject: [PATCH] Fix: Compilation error with XCode 16.3 Currently linking will fail if OpenMP is used. It will be addressed in a separate PR. Pull Request: https://projects.blender.org/blender/blender/pulls/136816 --- source/blender/blenlib/BLI_math_matrix_types.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_math_matrix_types.hh b/source/blender/blenlib/BLI_math_matrix_types.hh index d0d662f8f82..3a48cbd5a93 100644 --- a/source/blender/blenlib/BLI_math_matrix_types.hh +++ b/source/blender/blenlib/BLI_math_matrix_types.hh @@ -691,7 +691,7 @@ struct MatView : NonCopyable, NonMovable { friend std::ostream &operator<<(std::ostream &stream, const MatView &mat) { - return stream << mat->mat; + return stream << mat.mat; } };