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:
parent
4b943aab31
commit
eb901da610
@ -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++ )
|
||||
|
@ -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++ )
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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: ";
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user