0030895: Coding Rules - specify std namespace explicitly for std::cout and streams
[occt.git] / src / math / math_BissecNewton.cxx
index f05a30c..88eecc5 100644 (file)
@@ -159,8 +159,8 @@ void math_BissecNewton::Dump(Standard_OStream& o) const {
   o << "math_BissecNewton ";
   if(Done) {
     o << " Status = Done \n";
-    o << " The Root  is: " << x << endl;
-    o << " The value at this Root is: " << f << endl;
+    o << " The Root  is: " << x << std::endl;
+    o << " The value at this Root is: " << f << std::endl;
   }
   else {
     o << " Status = not Done \n";