1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +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

@@ -1791,10 +1791,10 @@ Standard_Boolean PLib::HermiteInterpolate
// If FirstOrder=LastOrder=0 then 2,3,5,6th rows and 3,4,5,6th columns are missing
math_Gauss Equations(A);
// cout << "A=" << A << endl;
// std::cout << "A=" << A << std::endl;
for (Standard_Integer idim=1; idim<=Dimension; idim++) {
// cout << "idim=" << idim << endl;
// std::cout << "idim=" << idim << std::endl;
math_Vector B(0,FirstOrder+LastOrder+1);
Standard_Integer icol ;
@@ -1803,11 +1803,11 @@ Standard_Boolean PLib::HermiteInterpolate
for (icol=0; icol<=LastOrder; icol++)
B(FirstOrder+1+icol) = LastConstr(idim,icol);
// cout << "B=" << B << endl;
// std::cout << "B=" << B << std::endl;
// The solving of equations system A * X = B. Then B = X
Equations.Solve(B);
// cout << "After Solving" << endl << "B=" << B << endl;
// std::cout << "After Solving" << std::endl << "B=" << B << std::endl;
if (Equations.IsDone()==Standard_False) return Standard_False;