0030895: Coding Rules - specify std namespace explicitly for std::cout and streams
[occt.git] / src / IGESSolid / IGESSolid_ToolTorus.cxx
index 17647e5..0fffb8c 100644 (file)
@@ -161,13 +161,13 @@ void  IGESSolid_ToolTorus::OwnDump
   (const Handle(IGESSolid_Torus)& ent, const IGESData_IGESDumper& /* dumper */,
    const Handle(Message_Messenger)& S, const Standard_Integer level) const
 {
-  S << "IGESSolid_Torus" << endl;
+  S << "IGESSolid_Torus" << Message_EndLine;
 
   S << "Radius of revolution : " << ent->MajorRadius() << "  ";
-  S << "Radius of the disc   : " << ent->DiscRadius()  << endl;
+  S << "Radius of the disc   : " << ent->DiscRadius()  << Message_EndLine;
   S << "Center Point   : ";
   IGESData_DumpXYZL(S,level, ent->AxisPoint(), ent->Location());
-  S << endl << "Axis direction : ";
+  S << Message_EndLine << "Axis direction : ";
   IGESData_DumpXYZL(S,level, ent->Axis(), ent->VectorLocation());
-  S << endl;
+  S << Message_EndLine;
 }