mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-03 14:10:33 +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:
@@ -31,7 +31,7 @@
|
||||
|
||||
STEPSelections_SelectAssembly::STEPSelections_SelectAssembly():IFSelect_SelectExplore (-1){ }
|
||||
|
||||
Standard_Boolean STEPSelections_SelectAssembly::Explore(const Standard_Integer level,
|
||||
Standard_Boolean STEPSelections_SelectAssembly::Explore(const Standard_Integer /*level*/,
|
||||
const Handle(Standard_Transient)& start,
|
||||
const Interface_Graph& G,
|
||||
Interface_EntityIterator& explored) const
|
||||
|
@@ -46,9 +46,9 @@ static Handle(Standard_Type) GetStepType(const Handle(StepData_ReadWriteModule)&
|
||||
|
||||
|
||||
Standard_Boolean STEPSelections_SelectDerived::Matches(const Handle(Standard_Transient)& ent,
|
||||
const Handle(Interface_InterfaceModel)& model,
|
||||
const Handle(Interface_InterfaceModel)& /*model*/,
|
||||
const TCollection_AsciiString& text,
|
||||
const Standard_Boolean exact) const
|
||||
const Standard_Boolean /*exact*/) const
|
||||
{
|
||||
Standard_Integer CN;
|
||||
Handle(StepData_ReadWriteModule) module;
|
||||
|
@@ -29,7 +29,7 @@
|
||||
|
||||
STEPSelections_SelectFaces::STEPSelections_SelectFaces():IFSelect_SelectExplore (-1){ }
|
||||
|
||||
Standard_Boolean STEPSelections_SelectFaces::Explore(const Standard_Integer level,
|
||||
Standard_Boolean STEPSelections_SelectFaces::Explore(const Standard_Integer /*level*/,
|
||||
const Handle(Standard_Transient)& start,
|
||||
const Interface_Graph& G,
|
||||
Interface_EntityIterator& explored) const
|
||||
|
@@ -30,7 +30,7 @@ static Standard_Integer flag;
|
||||
|
||||
STEPSelections_SelectGSCurves::STEPSelections_SelectGSCurves():IFSelect_SelectExplore (-1){ flag = 1;}
|
||||
|
||||
Standard_Boolean STEPSelections_SelectGSCurves::Explore(const Standard_Integer level,
|
||||
Standard_Boolean STEPSelections_SelectGSCurves::Explore(const Standard_Integer /*level*/,
|
||||
const Handle(Standard_Transient)& start,
|
||||
const Interface_Graph& G,
|
||||
Interface_EntityIterator& explored) const
|
||||
|
@@ -163,10 +163,10 @@ Interface_EntityIterator STEPSelections_SelectInstances::RootResult(const Interf
|
||||
}
|
||||
|
||||
|
||||
Standard_Boolean STEPSelections_SelectInstances::Explore(const Standard_Integer level,
|
||||
const Handle(Standard_Transient)& start,
|
||||
const Interface_Graph& G,
|
||||
Interface_EntityIterator& explored) const
|
||||
Standard_Boolean STEPSelections_SelectInstances::Explore(const Standard_Integer,
|
||||
const Handle(Standard_Transient)&,
|
||||
const Interface_Graph&,
|
||||
Interface_EntityIterator&) const
|
||||
{
|
||||
return Standard_False;
|
||||
}
|
||||
|
Reference in New Issue
Block a user