Mod: redundant void 2
This commit is contained in:
@@ -101,7 +101,7 @@ CurveProjectorShape::CurveProjectorShape(const TopoDS_Shape &aShape, const MeshK
|
||||
Do();
|
||||
}
|
||||
|
||||
void CurveProjectorShape::Do(void)
|
||||
void CurveProjectorShape::Do()
|
||||
{
|
||||
TopExp_Explorer Ex;
|
||||
TopoDS_Shape Edge;
|
||||
@@ -269,7 +269,7 @@ CurveProjectorSimple::CurveProjectorSimple(const TopoDS_Shape &aShape, const Mes
|
||||
}
|
||||
|
||||
|
||||
void CurveProjectorSimple::Do(void)
|
||||
void CurveProjectorSimple::Do()
|
||||
{
|
||||
TopExp_Explorer Ex;
|
||||
TopoDS_Shape Edge;
|
||||
@@ -583,7 +583,7 @@ CurveProjectorWithToolMesh::CurveProjectorWithToolMesh(const TopoDS_Shape &aShap
|
||||
}
|
||||
|
||||
|
||||
void CurveProjectorWithToolMesh::Do(void)
|
||||
void CurveProjectorWithToolMesh::Do()
|
||||
{
|
||||
TopExp_Explorer Ex;
|
||||
TopoDS_Shape Edge;
|
||||
|
||||
@@ -72,7 +72,7 @@ public:
|
||||
typedef std::map<TopoDS_Edge, std::vector<FaceSplitEdge>,TopoDSLess<TopoDS_Edge> > result_type;
|
||||
|
||||
|
||||
result_type &result(void) {return mvEdgeSplitPoints;}
|
||||
result_type &result() {return mvEdgeSplitPoints;}
|
||||
|
||||
void writeIntersectionPointsToFile(const char *name="export_pts.asc");
|
||||
|
||||
|
||||
@@ -478,7 +478,7 @@ class _VertexCompare
|
||||
return clP1.X() < clP2.X();
|
||||
}
|
||||
|
||||
_VertexCompare (void) : dE(1.0e-5) {}
|
||||
_VertexCompare () : dE(1.0e-5) {}
|
||||
double dE;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user