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:
@@ -252,7 +252,7 @@ Standard_Integer PCDM_ReadWriter_1::ReadReferenceCounter(const TCollection_Exten
|
||||
if(refUserInfo(i).Search(REFERENCE_COUNTER) != -1) {
|
||||
try { OCC_CATCH_SIGNALS theReferencesCounter=refUserInfo(i).Token(" ",2).IntegerValue();}
|
||||
catch (Standard_Failure const&) {
|
||||
// cout << "warning: could not read the reference counter in " << aFileName << endl;
|
||||
// std::cout << "warning: could not read the reference counter in " << aFileName << std::endl;
|
||||
TCollection_ExtendedString aMsg("Warning: ");
|
||||
aMsg = aMsg.Cat("could not read the reference counter in ").Cat(aFileName).Cat("\0");
|
||||
if(!theMsgDriver.IsNull())
|
||||
@@ -305,7 +305,7 @@ void PCDM_ReadWriter_1::ReadReferences(const TCollection_ExtendedString& aFileNa
|
||||
if(!theAbsolutePath.IsEmpty()) thePath=theAbsolutePath;
|
||||
}
|
||||
if(!theMsgDriver.IsNull()) {
|
||||
// cout << "reference found; ReferenceIdentifier: " << theReferenceIdentifier << "; File:" << thePath << ", version:" << theDocumentVersion;
|
||||
// std::cout << "reference found; ReferenceIdentifier: " << theReferenceIdentifier << "; File:" << thePath << ", version:" << theDocumentVersion;
|
||||
TCollection_ExtendedString aMsg("Warning: ");
|
||||
aMsg = aMsg.Cat("reference found; ReferenceIdentifier: ").Cat(theReferenceIdentifier).Cat("; File:").Cat(thePath).Cat(", version:").Cat(theDocumentVersion).Cat("\0");
|
||||
theMsgDriver->Send(aMsg.ToExtString());
|
||||
@@ -401,7 +401,7 @@ Standard_Integer PCDM_ReadWriter_1::ReadDocumentVersion(const TCollection_Extend
|
||||
if(refUserInfo(i).Search(MODIFICATION_COUNTER) != -1) {
|
||||
try { OCC_CATCH_SIGNALS theVersion=refUserInfo(i).Token(" ",2).IntegerValue();}
|
||||
catch (Standard_Failure const&) {
|
||||
// cout << "warning: could not read the version in " << aFileName << endl;
|
||||
// std::cout << "warning: could not read the version in " << aFileName << std::endl;
|
||||
TCollection_ExtendedString aMsg("Warning: ");
|
||||
aMsg = aMsg.Cat("could not read the version in ").Cat(aFileName).Cat("\0");
|
||||
if(!theMsgDriver.IsNull())
|
||||
|
Reference in New Issue
Block a user