mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0024057: Eliminate compiler warning C4100 in MSVC++ with warning level 4
Got rid of warning C4100: 'identifier' : unreferenced formal parameter Got rid of compile errors
This commit is contained in:
@@ -68,7 +68,7 @@ myTol(Tol)
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static void ExtentEdge(const TopoDS_Face& F,
|
||||
static void ExtentEdge(const TopoDS_Face& /*F*/,
|
||||
const TopoDS_Edge& E,
|
||||
TopoDS_Edge& NE)
|
||||
{
|
||||
@@ -103,8 +103,8 @@ static void ExtentEdge(const TopoDS_Face& F,
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static void SelectEdge (const TopoDS_Face& F,
|
||||
const TopoDS_Face& EF,
|
||||
static void SelectEdge (const TopoDS_Face& /*F*/,
|
||||
const TopoDS_Face& /*EF*/,
|
||||
const TopoDS_Edge& E,
|
||||
TopTools_ListOfShape& LInt)
|
||||
{
|
||||
@@ -330,10 +330,10 @@ void BRepOffset_Inter3d::FaceInter(const TopoDS_Face& F1,
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void BRepOffset_Inter3d::ConnexIntByArc(const TopTools_ListOfShape& SetOfFaces,
|
||||
const TopoDS_Shape& ShapeInit,
|
||||
const BRepOffset_Analyse& Analyse,
|
||||
const BRepAlgo_Image& InitOffsetFace)
|
||||
void BRepOffset_Inter3d::ConnexIntByArc(const TopTools_ListOfShape& /*SetOfFaces*/,
|
||||
const TopoDS_Shape& ShapeInit,
|
||||
const BRepOffset_Analyse& Analyse,
|
||||
const BRepAlgo_Image& InitOffsetFace)
|
||||
{
|
||||
BRepOffset_Type OT = BRepOffset_Concave;
|
||||
if (mySide == TopAbs_OUT) OT = BRepOffset_Convex;
|
||||
@@ -877,7 +877,7 @@ void BRepOffset_Inter3d::ContextIntByArc(const TopTools_IndexedMapOfShape& Conte
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void BRepOffset_Inter3d::AddCommonEdges(const TopTools_ListOfShape& SetOfFaces)
|
||||
void BRepOffset_Inter3d::AddCommonEdges(const TopTools_ListOfShape&)
|
||||
{
|
||||
}
|
||||
|
||||
|
@@ -1631,7 +1631,7 @@ void BRepOffset_MakeOffset::BuildOffsetByArc()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void BRepOffset_MakeOffset::SelfInter(TopTools_MapOfShape& Modif)
|
||||
void BRepOffset_MakeOffset::SelfInter(TopTools_MapOfShape& /*Modif*/)
|
||||
{
|
||||
#ifdef DEB
|
||||
if ( ChronBuild) {
|
||||
@@ -2703,7 +2703,7 @@ void BRepOffset_MakeOffset::MakeLoops(TopTools_IndexedMapOfShape& Modif)
|
||||
// share edges that were reconstructed.
|
||||
//=======================================================================
|
||||
|
||||
void BRepOffset_MakeOffset::MakeFaces(TopTools_IndexedMapOfShape& Modif)
|
||||
void BRepOffset_MakeOffset::MakeFaces(TopTools_IndexedMapOfShape& /*Modif*/)
|
||||
{
|
||||
#ifdef DEb
|
||||
if (ChronBuild) {
|
||||
|
@@ -2524,8 +2524,8 @@ void BRepOffset_Tool::Inter2d (const TopoDS_Face& F,
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static void SelectEdge (const TopoDS_Face& F,
|
||||
const TopoDS_Face& EF,
|
||||
static void SelectEdge (const TopoDS_Face& /*F*/,
|
||||
const TopoDS_Face& /*EF*/,
|
||||
const TopoDS_Edge& E,
|
||||
TopTools_ListOfShape& LInt)
|
||||
{
|
||||
|
Reference in New Issue
Block a user