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:
@@ -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)
|
||||
{
|
||||
}
|
||||
|
@@ -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;}
|
||||
|
Reference in New Issue
Block a user