comment warning message

This commit is contained in:
eap 2008-05-26 14:15:02 +00:00
parent 54df188f64
commit 4e38a82bb3

View File

@ -178,9 +178,9 @@ void SMESHDS_GroupBase::SetColorGroup(int theColorGroup)
if ( aR < 0. || aR > 1. || // PAL19395
aG < 0. || aG > 1. ||
aB < 0. || aB > 1. )
#ifdef _DEBUG_
cout << "SMESHDS_GroupBase::SetColorGroup("<<theColorGroup<<"), invalid color ignored"<<endl;
#endif
// #ifdef _DEBUG_
// cout << "SMESHDS_GroupBase::SetColorGroup("<<theColorGroup<<"), invalid color ignored"<<endl;
// #endif
return;
Quantity_Color aColor( aR, aG, aB, Quantity_TOC_RGB );
SetColor( aColor );