in forward declaration replace class keyword when struct is expected

comment out unused parameters
This commit is contained in:
wmayer
2016-12-29 17:52:39 +01:00
parent 35b76c5205
commit 3114df352d
18 changed files with 54 additions and 42 deletions

View File

@@ -398,7 +398,7 @@ bool GeomCurve::closestParameterToBasicCurve(const Base::Vector3d& point, double
if (c->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))){
Handle_Geom_TrimmedCurve tc = Handle_Geom_TrimmedCurve::DownCast(handle());
Handle_Geom_Curve bc = Handle_Geom_Curve::DownCast(tc->BasisCurve());
Handle_Geom_Curve bc = tc->BasisCurve();
try {
if (!bc.IsNull()) {
gp_Pnt pnt(point.x,point.y,point.z);