Fix various compiler warnings:

* fix -Wunused-parameter
* fix -Wunused-function
* fix -Wunused-private-field
* fix -Wunused-variable
* fix -Winconsistent-missing-override
This commit is contained in:
wmayer
2024-04-30 16:59:31 +02:00
parent 6a6fc7eb4d
commit 2ea6bc17b6
14 changed files with 16 additions and 20 deletions

View File

@@ -4081,6 +4081,7 @@ bool TopoShape::findPlane(gp_Pln& pln, double tol, double atol) const
}
#else
bool TopoShape::findPlane(gp_Pln &pln, double tol, double atol) const {
(void)atol;
if(_Shape.IsNull())
return false;
TopoDS_Shape shape = _Shape;