removed using statement from header file

This commit is contained in:
Valera Cogut 2018-07-17 19:46:43 +03:00
parent 20724f7ecc
commit 1169c2d966
2 changed files with 2 additions and 3 deletions

View file

@ -2,11 +2,8 @@
#include <fc/shared_ptr.hpp>
#include <fc/filesystem.hpp>
#include <fc/io/iostream.hpp>
#include <fstream>
using namespace std;
namespace fc {
class path;
class ofstream : virtual public ostream {

View file

@ -10,6 +10,8 @@
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/fstream.hpp>
using namespace std;
namespace fc {
class ofstream::impl : public fc::retainable {
public: