1
0
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:
omy
2013-07-18 13:09:32 +04:00
parent 92a4955951
commit 35e08fe886
351 changed files with 1092 additions and 991 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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

View File

@@ -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

View File

@@ -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;
}