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
This commit is contained in:
Sergey Sharybin
2025-04-01 18:13:42 +02:00
committed by Sergey Sharybin
parent b06223d865
commit 484c1b8cd1

View File

@@ -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;
}
};