diff --git a/src/Aspect/Aspect_MarkMapEntry.cxx b/src/Aspect/Aspect_MarkMapEntry.cxx index d3565f7749..01b64703e9 100755 --- a/src/Aspect/Aspect_MarkMapEntry.cxx +++ b/src/Aspect/Aspect_MarkMapEntry.cxx @@ -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++ ) diff --git a/src/Aspect/Aspect_TypeMapEntry.cxx b/src/Aspect/Aspect_TypeMapEntry.cxx index 5b13d3e36f..33a773b1ef 100755 --- a/src/Aspect/Aspect_TypeMapEntry.cxx +++ b/src/Aspect/Aspect_TypeMapEntry.cxx @@ -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++ ) diff --git a/src/Aspect/Aspect_WidthMapEntry.cxx b/src/Aspect/Aspect_WidthMapEntry.cxx index bae135a2d3..03dae4f25c 100755 --- a/src/Aspect/Aspect_WidthMapEntry.cxx +++ b/src/Aspect/Aspect_WidthMapEntry.cxx @@ -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; diff --git a/src/TDataStd/TDataStd_ExtStringArray.cxx b/src/TDataStd/TDataStd_ExtStringArray.cxx index ea20e56069..21c46e7b51 100755 --- a/src/TDataStd/TDataStd_ExtStringArray.cxx +++ b/src/TDataStd/TDataStd_ExtStringArray.cxx @@ -241,7 +241,7 @@ Standard_OStream& TDataStd_ExtStringArray::Dump (Standard_OStream& anOS) const for(i = lower; i<=upper; i++) anOS << "\t" <Value(i)<Value(i); } - anOS << " Delta is " << myIsDelta ? "ON":"OFF"; + anOS << " Delta is " << (myIsDelta ? "ON":"OFF"); anOS << endl; // anOS <<"\nAttribute fields: "; diff --git a/src/TDataStd/TDataStd_RealArray.cxx b/src/TDataStd/TDataStd_RealArray.cxx index e07faa55f5..9a709dce47 100755 --- a/src/TDataStd/TDataStd_RealArray.cxx +++ b/src/TDataStd/TDataStd_RealArray.cxx @@ -242,7 +242,7 @@ Standard_OStream& TDataStd_RealArray::Dump (Standard_OStream& anOS) const for(i = lower; i<=upper; i++) anOS << " " <Value(i); } - anOS << " Delta is " << myIsDelta ? "ON":"OFF"; + anOS << " Delta is " << (myIsDelta ? "ON":"OFF"); anOS << endl; return anOS; }