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

This commit is contained in:
Howard Trickey 2021-02-22 09:53:29 -05:00
parent dd2e0150ae
commit 6cd8c33d00
1 changed files with 2 additions and 1 deletions

View File

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