From 1169c2d966d87244e8cab31857e36f6fcab05d1a Mon Sep 17 00:00:00 2001 From: Valera Cogut Date: Tue, 17 Jul 2018 19:46:43 +0300 Subject: [PATCH] removed using statement from header file --- include/fc/io/fstream.hpp | 3 --- src/io/fstream.cpp | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/fc/io/fstream.hpp b/include/fc/io/fstream.hpp index 481c051..9a0c99d 100644 --- a/include/fc/io/fstream.hpp +++ b/include/fc/io/fstream.hpp @@ -2,11 +2,8 @@ #include #include #include - #include -using namespace std; - namespace fc { class path; class ofstream : virtual public ostream { diff --git a/src/io/fstream.cpp b/src/io/fstream.cpp index 031026b..042791d 100644 --- a/src/io/fstream.cpp +++ b/src/io/fstream.cpp @@ -10,6 +10,8 @@ #include #include +using namespace std; + namespace fc { class ofstream::impl : public fc::retainable { public: