File 0001-Remove-unused-return-value-in-unused-function.patch of Package meshlab
From c629b305180f58b9baa2d0e769dd814ee62a8f53 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Sun, 22 Jan 2023 02:53:03 +0100
Subject: [PATCH] Remove unused return value in unused function
---
vcg/complex/algorithms/isotropic_remeshing.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vcg/complex/algorithms/isotropic_remeshing.h b/vcg/complex/algorithms/isotropic_remeshing.h
index aa14288..f1fcdf7 100644
--- a/src/vcglib/vcg/complex/algorithms/isotropic_remeshing.h
+++ b/src/vcglib/vcg/complex/algorithms/isotropic_remeshing.h
@@ -1035,7 +1035,7 @@ private:
* \ | / \|/ +0 \ / -1
* v3 v3 v3
*/
- static bool chooseBestCrossCollapse(PosType &p, VertexPair& bp, std::vector<FaceType*> &ff)
+ static void chooseBestCrossCollapse(PosType &p, VertexPair& bp, std::vector<FaceType*> &ff)
{
std::vector<VertexType*> vv0, vv1, vv2, vv3;
VertexType *v0, *v1, *v2, *v3;
--
2.39.0