[Bf-blender-cvs] [6cd8c33d000] master: Fix compilation error in bypass bmesh commit when GMP not defined.

Howard Trickey noreply at git.blender.org
Mon Feb 22 15:56:28 CET 2021


Commit: 6cd8c33d000a9febdb9f4d1596bf8f94b56f9025
Author: Howard Trickey
Date:   Mon Feb 22 09:53:29 2021 -0500
Branches: master
https://developer.blender.org/rB6cd8c33d000a9febdb9f4d1596bf8f94b56f9025

Fix compilation error in bypass bmesh commit when GMP not defined.

===================================================================

M	source/blender/blenkernel/intern/mesh_boolean_convert.cc

===================================================================

diff --git a/source/blender/blenkernel/intern/mesh_boolean_convert.cc b/source/blender/blenkernel/intern/mesh_boolean_convert.cc
index b546550a85f..02c99d2c5da 100644
--- a/source/blender/blenkernel/intern/mesh_boolean_convert.cc
+++ b/source/blender/blenkernel/intern/mesh_boolean_convert.cc
@@ -821,11 +821,12 @@ Mesh *BKE_mesh_boolean(const Mesh **meshes,
 
 #else
 Mesh *BKE_mesh_boolean(const Mesh **UNUSED(meshes),
-                       const Object **UNUSED(objects),
+                       const float (*obmats[])[4][4],
                        const int UNUSED(meshes_len),
                        const bool UNUSED(use_self),
                        const int UNUSED(boolean_mode))
 {
+  UNUSED_VARS(obmats);
   return NULL;
 }



More information about the Bf-blender-cvs mailing list