mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0024096: Eliminate compiler warning C4505 in MSVC++ with warning level 4
Removed obsolete functions from sources. Some useful debug functions were 'defined' ( put into #ifdef ...#endif ) Removed some redundant code
This commit is contained in:
@@ -464,31 +464,10 @@ public:
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
//-- ================================================================================
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : FindInList
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
// Unused :
|
||||
#ifdef DEB
|
||||
static Standard_Boolean FindInList (const TColStd_ListOfInteger& L,
|
||||
const Standard_Integer V)
|
||||
{
|
||||
for (TColStd_ListIteratorOfListOfInteger ILV(L);
|
||||
ILV.More();
|
||||
ILV.Next()) {
|
||||
if (V == ILV.Value())
|
||||
return Standard_True;
|
||||
}
|
||||
return Standard_False;
|
||||
}
|
||||
#endif
|
||||
|
||||
//=======================================================================
|
||||
//function : AdjustParameter
|
||||
//purpose :
|
||||
|
Reference in New Issue
Block a user