mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
0024635: Eliminate trivial compiler warnings by GCC in Debug mode
This commit is contained in:
@@ -120,8 +120,11 @@ void TopOpeBRep_Point2d::Dump(const Standard_Integer E1index,const Standard_Inte
|
||||
#ifdef DRAW
|
||||
cout<<FUN_tool_PRODINP()<<"P"<<Index()<<" "<<P3D.X()<<" "<<P3D.Y()<<" "<<P3D.Z()<<"; # tol = "<<tol<<endl;
|
||||
#endif
|
||||
cout<<" on (1) :"; cout<<" vertex(1) : "; cout<<(isvertex1)? 1:0;
|
||||
cout<<" T "<<E1index<<"(1) : "; T1.Dump(cout);
|
||||
cout<<" on (1) :";
|
||||
cout<<" vertex(1) : ";
|
||||
cout<<(isvertex1?1:0);
|
||||
cout<<" T "<<E1index<<"(1) : ";
|
||||
T1.Dump(cout);
|
||||
cout<<" par(1) = "<<par1;
|
||||
if (isvertex1) {
|
||||
P3D = BRep_Tool::Pnt(V1);
|
||||
@@ -129,8 +132,11 @@ void TopOpeBRep_Point2d::Dump(const Standard_Integer E1index,const Standard_Inte
|
||||
}
|
||||
cout<<endl;
|
||||
|
||||
cout<<" on (2) :"; cout<<" vertex(2) : "; cout<<(isvertex2)? 1:0;
|
||||
cout<<" T "<<E2index<<"(2) : "; T2.Dump(cout);
|
||||
cout<<" on (2) :";
|
||||
cout<<" vertex(2) : ";
|
||||
cout<<(isvertex2?1:0);
|
||||
cout<<" T "<<E2index<<"(2) : ";
|
||||
T2.Dump(cout);
|
||||
cout<<" par(2) = "<<par2;
|
||||
if (isvertex2) {
|
||||
P3D = BRep_Tool::Pnt(V2);
|
||||
|
@@ -59,7 +59,10 @@ extern Standard_Boolean TopOpeBRepDS_GettraceDSF();
|
||||
extern Standard_Boolean TopOpeBRepDS_GettraceDSP();
|
||||
extern Standard_Boolean TopOpeBRepDS_GettraceSPSX(const Standard_Integer i);
|
||||
extern Standard_Boolean TopOpeBRep_GettraceNVP(Standard_Integer a,Standard_Integer b,Standard_Integer c,Standard_Integer d,Standard_Integer e);
|
||||
extern Standard_Boolean GLOBAL_bvpr = Standard_False;void debvpr(){};
|
||||
|
||||
Standard_Boolean GLOBAL_bvpr = Standard_False;
|
||||
|
||||
void debvpr(){};
|
||||
void debvprmess(Standard_Integer f1,Standard_Integer f2,Standard_Integer il,Standard_Integer vp,Standard_Integer si)
|
||||
{cout<<"f1,f2,il,vp,si : "<<f1<<","<<f2<<","<<il<<","<<vp<<","<<si<<endl;cout.flush();debvpr();}
|
||||
void debpoint(Standard_Integer i) {cout<<"+ debpoint"<<i<<endl;}
|
||||
|
Reference in New Issue
Block a user