1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

0030895: Coding Rules - specify std namespace explicitly for std::cout and streams

"endl" manipulator for Message_Messenger is renamed to "Message_EndLine".

The following entities from std namespace are now used
with std:: explicitly specified (from Standard_Stream.hxx):
std::istream,std::ostream,std::ofstream,std::ifstream,std::fstream,
std::filebuf,std::streambuf,std::streampos,std::ios,std::cout,std::cerr,
std::cin,std::endl,std::ends,std::flush,std::setw,std::setprecision,
std::hex,std::dec.
This commit is contained in:
tiv
2019-08-02 10:32:16 +03:00
committed by bugmaster
parent 3977d18aca
commit 0423218095
972 changed files with 8554 additions and 8550 deletions

View File

@@ -280,23 +280,23 @@ Standard_Boolean Bnd_Box2d::IsOut (const Bnd_Box2d& Other) const
void Bnd_Box2d::Dump () const
{
cout << "Box2d : ";
if (IsVoid()) cout << "Void";
else if (IsWhole()) cout << "Whole";
std::cout << "Box2d : ";
if (IsVoid()) std::cout << "Void";
else if (IsWhole()) std::cout << "Whole";
else {
cout << "\n Xmin : ";
if (IsOpenXmin()) cout << "Infinite";
else cout << Xmin;
cout << "\n Xmax : ";
if (IsOpenXmax()) cout << "Infinite";
else cout << Xmax;
cout << "\n Ymin : ";
if (IsOpenYmin()) cout << "Infinite";
else cout << Ymin;
cout << "\n Ymax : ";
if (IsOpenYmax()) cout << "Infinite";
else cout << Ymax;
std::cout << "\n Xmin : ";
if (IsOpenXmin()) std::cout << "Infinite";
else std::cout << Xmin;
std::cout << "\n Xmax : ";
if (IsOpenXmax()) std::cout << "Infinite";
else std::cout << Xmax;
std::cout << "\n Ymin : ";
if (IsOpenYmin()) std::cout << "Infinite";
else std::cout << Ymin;
std::cout << "\n Ymax : ";
if (IsOpenYmax()) std::cout << "Infinite";
else std::cout << Ymax;
}
cout << "\n Gap : " << Gap;
cout << "\n";
std::cout << "\n Gap : " << Gap;
std::cout << "\n";
}