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

View File

@@ -101,8 +101,8 @@ void SelectMgr_EntityOwner::Unhilight(const Handle(PrsMgr_PresentationManager)&
PM->Unhighlight(mySelectable,aMode);
}
void SelectMgr_EntityOwner::Clear(const Handle(PrsMgr_PresentationManager)& PM,
const Standard_Integer aMode)
void SelectMgr_EntityOwner::Clear(const Handle(PrsMgr_PresentationManager)&,
const Standard_Integer)
{
// nothing done on the selectable here...
}
@@ -155,7 +155,7 @@ Standard_Boolean SelectMgr_EntityOwner::IsForcedHilight () const
//purpose :
//=======================================================================
void SelectMgr_EntityOwner::SetZLayer
(const Handle(PrsMgr_PresentationManager)& thePrsMgr,
const Standard_Integer theLayerId)
(const Handle(PrsMgr_PresentationManager)&,
const Standard_Integer)
{
}

View File

@@ -23,5 +23,5 @@
#include <SelectMgr_Filter.ixx>
Standard_Boolean SelectMgr_Filter::ActsOn(const TopAbs_ShapeEnum aStandardMode) const
Standard_Boolean SelectMgr_Filter::ActsOn(const TopAbs_ShapeEnum /*aStandardMode*/) const
{return Standard_False;}