1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0025266: Debug statements in the source are getting flushed on to the console

Output to cout activated previously in Debug mode by #ifdef DEB is suppressed by using macro <PACKAGE>_DEB instead of DEB
This commit is contained in:
dbv
2014-10-08 19:00:20 +04:00
committed by abv
parent 7aa1b65c2a
commit 63c629aa3a
370 changed files with 1634 additions and 1639 deletions

View File

@@ -236,7 +236,9 @@ Standard_Real ATanh(const Standard_Real Value)
{
if ( (Value <= -1.) || (Value >= 1.) ){
Standard_NumericError::Raise("Illegal agument in ATanh");
#ifdef STANDARD_DEB
cout << "Illegal agument in ATanh" << endl ;
#endif
}
return atanh(Value);
}
@@ -248,7 +250,9 @@ Standard_Real ACosh (const Standard_Real Value)
{
if ( Value < 1. ){
Standard_NumericError::Raise("Illegal agument in ACosh");
#ifdef STANDARD_DEB
cout << "Illegal agument in ACosh" << endl ;
#endif
}
return acosh(Value);
}
@@ -259,7 +263,9 @@ Standard_Real ACosh (const Standard_Real Value)
Standard_Real Log (const Standard_Real Value)
{ if ( Value <= 0. ){
Standard_NumericError::Raise("Illegal agument in Log");
#ifdef STANDARD_DEB
cout << "Illegal agument in Log" << endl ;
#endif
}
return log(Value);
}
@@ -270,7 +276,9 @@ Standard_Real Sqrt (const Standard_Real Value)
{
if ( Value < 0. ){
Standard_NumericError::Raise("Illegal agument in Sqrt");
#ifdef STANDARD_DEB
cout << "Illegal agument in Sqrt" << endl ;
#endif
}
return sqrt(Value);
}