1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-18 14:27:39 +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:
omy
2013-08-02 09:54:03 +04:00
committed by bugmaster
parent 7ff8f0197e
commit 4e18e72a22
59 changed files with 80 additions and 3093 deletions

View File

@@ -74,19 +74,6 @@ static inline void D13d(const Standard_Address C, const Standard_Real U,
((Adaptor3d_Curve*)C)->D1(U,P,V1);
}
// Unused :
#ifdef DEB
static void D12d(const Standard_Address C, const Standard_Real U,
gp_Pnt& PP, gp_Vec& VV1)
{
gp_Pnt2d P;
gp_Vec2d V1;
((Adaptor2d_Curve2d*)C)->D1(U,P,V1);
PP.SetCoord(P.X(),P.Y(),0.);
VV1.SetCoord(V1.X(),V1.Y(),0.);
}
#endif
static inline void D23d(const Standard_Address C, const Standard_Real U,
gp_Pnt& P, gp_Vec& V1, gp_Vec& V2)
{