1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0022685: Missing parentheses around trigraph operator

This commit is contained in:
SZY 2011-11-18 10:22:54 +00:00 committed by bugmaster
parent 4b943aab31
commit eb901da610
7 changed files with 11 additions and 13 deletions

View File

@ -1,4 +1,3 @@
// File Aspect_MarkMapEntry.cxx
// Created Janvier 1995
// Author GG
@ -125,11 +124,11 @@ void Aspect_MarkMapEntry::Dump () const {
Aspect_TypeOfMarker type = MyStyle.Type() ;
Standard_Integer i,length = MyStyle.Length() ;
Standard_Boolean draw = Standard_False ;
Standard_Real X,Y;
Standard_Real X(0),Y(0);
cout << " Aspect_MarkMapEntry::Dump ()\n";
cout << " MyStyleIsDef : " << (MyStyleIsDef) ? "True\n" : "False\n";
cout << " MyIndexIsDef : " << (MyIndexIsDef) ? "True\n" : "False\n";
cout << " MyStyleIsDef : " << (MyStyleIsDef ? "True\n" : "False\n");
cout << " MyIndexIsDef : " << (MyIndexIsDef ? "True\n" : "False\n");
cout << " MarkerStyle : " << (Standard_Integer) type << " Length : " << length << "\n";//WNT
if( length ) {
for( i=1 ; i<=length ; i++ )

View File

@ -1,4 +1,3 @@
// File Aspect_TypeMapEntry.cxx
// Created Septembre 1993
// Author GG
@ -141,8 +140,8 @@ void Aspect_TypeMapEntry::Dump () const {
Standard_Integer i,length = MyType.Length() ;
cout << " Aspect_TypeMapEntry::Dump ()\n";
cout << " MyTypeIsDef : " << (MyTypeIsDef) ? "True\n" : "False\n";
cout << " MyIndexIsDef : " << (MyIndexIsDef) ? "True\n" : "False\n";
cout << " MyTypeIsDef : " << (MyTypeIsDef ? "True\n" : "False\n");
cout << " MyIndexIsDef : " << (MyIndexIsDef ? "True\n" : "False\n");
cout << " LineStyle : " << (Standard_Integer) style << " Length : " << length << "\n";//WNT
if( length ) {
for( i=(MyType.Values()).Lower() ; i<=(MyType.Values()).Upper() ; i++ )

View File

@ -147,8 +147,8 @@ void Aspect_WidthMapEntry::Free () {
void Aspect_WidthMapEntry::Dump () const {
cout << " Aspect_WidthMapEntry::Dump ()\n";
cout << " MyTypeIsDef : " << (MyTypeIsDef) ? "True\n" : "False\n";
cout << " MyIndexIsDef : " << (MyIndexIsDef) ? "True\n" : "False\n";
cout << " MyTypeIsDef : " << (MyTypeIsDef ? "True\n" : "False\n");
cout << " MyIndexIsDef : " << (MyIndexIsDef ? "True\n" : "False\n");
cout << " TypeOfWidth : " << (Standard_Integer) MyType << "\n";//WNT
cout << " LineWidth : " << MyWidth << "\n";
cout << flush;

View File

@ -241,7 +241,7 @@ Standard_OStream& TDataStd_ExtStringArray::Dump (Standard_OStream& anOS) const
for(i = lower; i<=upper; i++)
anOS << "\t" <<myValue->Value(i)<<endl;
}
anOS << " Delta is " << myIsDelta ? "ON":"OFF";
anOS << " Delta is " << (myIsDelta ? "ON":"OFF");
anOS << endl;
return anOS;
}

View File

@ -187,7 +187,7 @@ Standard_OStream& TDataStd_IntPackedMap::Dump(Standard_OStream& theOS) const
{
Standard_OStream& anOS = TDF_Attribute::Dump( theOS );
anOS << "IntPackedMap size = " << Extent();
anOS << " Delta is " << myIsDelta ? "ON":"OFF";
anOS << " Delta is " << (myIsDelta ? "ON":"OFF");
anOS << endl;
return anOS;
}

View File

@ -244,7 +244,7 @@ Standard_OStream& TDataStd_IntegerArray::Dump (Standard_OStream& anOS) const
for(i = lower; i<=upper; i++)
anOS << " " <<myValue->Value(i);
}
anOS << " Delta is " << myIsDelta ? "ON":"OFF";
anOS << " Delta is " << (myIsDelta ? "ON":"OFF");
anOS << endl;
// anOS <<"\nAttribute fields: ";

View File

@ -242,7 +242,7 @@ Standard_OStream& TDataStd_RealArray::Dump (Standard_OStream& anOS) const
for(i = lower; i<=upper; i++)
anOS << " " <<myValue->Value(i);
}
anOS << " Delta is " << myIsDelta ? "ON":"OFF";
anOS << " Delta is " << (myIsDelta ? "ON":"OFF");
anOS << endl;
return anOS;
}