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