From 7fab82af5fdda7b19f90029c4ad197481669b0e2 Mon Sep 17 00:00:00 2001 From: kgv Date: Tue, 13 Aug 2019 11:33:20 +0300 Subject: [PATCH] 0008239: Foundation Classes - directive "using namespace std" doesn't allow to build application with OCC and other 3rd party libraries Standard_Stream.hxx no more adds "using std::" entities. --- dox/dev_guides/upgrade/upgrade.md | 3 +++ src/Message/Message_Messenger.hxx | 7 ------- src/Standard/Standard_Stream.hxx | 22 ---------------------- 3 files changed, 3 insertions(+), 29 deletions(-) diff --git a/dox/dev_guides/upgrade/upgrade.md b/dox/dev_guides/upgrade/upgrade.md index e4c78255c5..febe9883d1 100644 --- a/dox/dev_guides/upgrade/upgrade.md +++ b/dox/dev_guides/upgrade/upgrade.md @@ -1761,3 +1761,6 @@ The following API changes have been made: * Methods BOPTools_BoxSelector::Reject and BOPTools_BoxSelector::Accept have been removed as unused. * The RunParallel flag has been removed from the list of parameters of BOPAlgo_Tools::IntersectVertices method. Earlier, it performed selection from the UB tree in parallel mode. Now all interfering pairs are found in one pass, using pair traverse of the same BVH tree. +@subsection upgrade_740_stdnamespace Standard_Stream.hxx no more has "using std::" statements +*Standard_Stream.hxx* header, commonly included by other OCCT header files, does no more add entities from *std namespace* related to streams (like *std::cout*, *std::istream* and others) into global namespace. +The application code relying on this matter should be updated to either specify std namespace explicitly (like std::cout) or add "using std::" statements locally. diff --git a/src/Message/Message_Messenger.hxx b/src/Message/Message_Messenger.hxx index 76873bd13f..675fba3436 100644 --- a/src/Message/Message_Messenger.hxx +++ b/src/Message/Message_Messenger.hxx @@ -185,11 +185,4 @@ inline const Handle(Message_Messenger)& Message_EndLine (const Handle(Message_Me return theMessenger; } -// endl -inline const Handle(Message_Messenger)& endl (const Handle(Message_Messenger)& theMessenger) -{ - theMessenger->Send ("", Message_Info, Standard_True); - return theMessenger; -} - #endif // _Message_Messenger_HeaderFile diff --git a/src/Standard/Standard_Stream.hxx b/src/Standard/Standard_Stream.hxx index b880e146d4..cbb2ac57fc 100644 --- a/src/Standard/Standard_Stream.hxx +++ b/src/Standard/Standard_Stream.hxx @@ -21,26 +21,4 @@ #include #include -// "using" declaration for STL types is still necessary -// as OCCT code contains too much of this staff without std:: prefix -using std::istream; -using std::ostream; -using std::ofstream; -using std::ifstream; -using std::fstream; -using std::filebuf; -using std::streambuf; -using std::streampos; -using std::ios; -using std::cout; -using std::cerr; -using std::cin; -using std::endl; -using std::ends; -using std::flush; -using std::setw; -using std::setprecision; -using std::hex; -using std::dec; - #endif // _Standard_Stream_HeaderFile