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:
@@ -39,7 +39,7 @@ StepElement_CurveElementFreedom::StepElement_CurveElementFreedom ()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer StepElement_CurveElementFreedom::CaseNum (const Handle(Standard_Transient)& ent) const
|
||||
Standard_Integer StepElement_CurveElementFreedom::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@@ -64,7 +64,7 @@ Standard_CString StepElement_CurveElementFreedomMember::Name() const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen)
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/)
|
||||
{
|
||||
Standard_Integer thecase =0;
|
||||
if (!name || name[0] == '\0') thecase = 0;
|
||||
|
@@ -37,7 +37,7 @@ StepElement_CurveElementPurpose::StepElement_CurveElementPurpose ()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer StepElement_CurveElementPurpose::CaseNum (const Handle(Standard_Transient)& ent) const
|
||||
Standard_Integer StepElement_CurveElementPurpose::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@@ -65,7 +65,7 @@ Standard_CString StepElement_CurveElementPurposeMember::Name() const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen)
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/)
|
||||
{
|
||||
Standard_Integer thecase =0;
|
||||
if (!name || name[0] == '\0') thecase = 0;
|
||||
|
@@ -37,7 +37,7 @@ StepElement_ElementAspect::StepElement_ElementAspect ()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer StepElement_ElementAspect::CaseNum (const Handle(Standard_Transient)& ent) const
|
||||
Standard_Integer StepElement_ElementAspect::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@@ -41,7 +41,7 @@ StepElement_MeasureOrUnspecifiedValue::StepElement_MeasureOrUnspecifiedValue ()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer StepElement_MeasureOrUnspecifiedValue::CaseNum (const Handle(Standard_Transient)& ent) const
|
||||
Standard_Integer StepElement_MeasureOrUnspecifiedValue::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@@ -65,7 +65,7 @@ Standard_CString StepElement_MeasureOrUnspecifiedValueMember::Name() const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen)
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/)
|
||||
{
|
||||
Standard_Integer thecase =0;
|
||||
if (!name || name[0] == '\0') thecase = 0;
|
||||
|
@@ -37,7 +37,7 @@ StepElement_SurfaceElementPurpose::StepElement_SurfaceElementPurpose ()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer StepElement_SurfaceElementPurpose::CaseNum (const Handle(Standard_Transient)& ent) const
|
||||
Standard_Integer StepElement_SurfaceElementPurpose::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@@ -65,7 +65,7 @@ Standard_CString StepElement_SurfaceElementPurposeMember::Name() const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen)
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/)
|
||||
{
|
||||
Standard_Integer thecase =0;
|
||||
if (!name || name[0] == '\0') thecase = 0;
|
||||
|
@@ -37,7 +37,7 @@ StepElement_VolumeElementPurpose::StepElement_VolumeElementPurpose ()
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer StepElement_VolumeElementPurpose::CaseNum (const Handle(Standard_Transient)& ent) const
|
||||
Standard_Integer StepElement_VolumeElementPurpose::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@@ -65,7 +65,7 @@ Standard_CString StepElement_VolumeElementPurposeMember::Name() const
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen)
|
||||
static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/)
|
||||
{
|
||||
Standard_Integer thecase =0;
|
||||
if (!name || name[0] == '\0') thecase = 0;
|
||||
|
Reference in New Issue
Block a user