Skip to content

Commit 68387af

Browse files
committed
Typing error fixes
1 parent 004d899 commit 68387af

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lrsplines2D/src/LRSurfApprox.C

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -799,16 +799,16 @@ void LRSurfApprox::getClassifiedPts(vector<double>& outliers, int& nmb_outliers,
799799
// Update surface
800800
if (useMBA_ || ki >= toMBA_)
801801
{
802-
#ifdef DEBUG
802+
//#ifdef DEBUG
803803
std::cout << "Using MBA" << std::endl;
804-
#endif
804+
//#endif
805805
runMBAUpdate(true);
806806
}
807807
else
808808
{
809-
#ifdef DEBUG
809+
//#ifdef DEBUG
810810
std::cout << "Using LS" << std::endl;
811-
#endif
811+
//#endif
812812
try {
813813
LSapprox.updateLocals();
814814
performSmooth(&LSapprox);

lrsplines3D/include/GoTools/lrsplines3D/Mesh3D.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class Mesh3D : public MeshLR
104104
/// in the provided 1-D arrays 'xknots' and 'yknots'. The arrays must have begin()
105105
/// and end() member methods. Multiplicities > 1 are allowed, and expressed by repeated
106106
// values.
107-
te/mplate<typename Array>
107+
template<typename Array>
108108
Mesh3D(const Array& xknots,
109109
const Array& yknots,
110110
const Array& zknots);

lrsplines3D/src/LRBSpline3D.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ int LRBSpline3D::endmult(Direction3D dir, bool atstart) const
428428
{
429429
return support_.end();
430430
}
431-
431+
#if 0
432432
//==============================================================================
433433
std::vector<Element3D*> LRBSpline3D::getExtendedSupport()
434434
//==============================================================================
@@ -444,7 +444,7 @@ int LRBSpline3D::endmult(Direction3D dir, bool atstart) const
444444
MESSAGE("(): Not implemented.");
445445
throw;
446446
}
447-
447+
#endif
448448

449449
//==============================================================================
450450
bool LRBSpline3D::operator<(const LRBSpline3D& rhs) const

lrsplines3D/src/LRSplineVolume.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1783,7 +1783,7 @@ Point LRSplineVolume::operator()(double u, double v, double w, int u_deriv, int
17831783
return result;
17841784
}
17851785

1786-
#if -
1786+
#if 0
17871787
//==============================================================================
17881788
void LRSplineVolume::computeBasis (double param_u, double param_v, double param_w,
17891789
BasisPtsSf& result, int iEl ) const

0 commit comments

Comments
 (0)