diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-07-08 10:50:18 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-07-08 10:50:18 -0400 |
commit | 3e6c7c189ba3d623845dfc385f143cc49e4be8aa (patch) | |
tree | 5e0dfa828891d67c230736a6cf4f5adeb2216097 /cpp/src/Ice/LoggerI.h | |
parent | Additional UWP fix for ICE-7172 (diff) | |
download | ice-3e6c7c189ba3d623845dfc385f143cc49e4be8aa.tar.bz2 ice-3e6c7c189ba3d623845dfc385f143cc49e4be8aa.tar.xz ice-3e6c7c189ba3d623845dfc385f143cc49e4be8aa.zip |
Removed IceUtilInternal ifstream and ofstream
Diffstat (limited to 'cpp/src/Ice/LoggerI.h')
-rw-r--r-- | cpp/src/Ice/LoggerI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/LoggerI.h b/cpp/src/Ice/LoggerI.h index c48e768d1b4..580371a9f83 100644 --- a/cpp/src/Ice/LoggerI.h +++ b/cpp/src/Ice/LoggerI.h @@ -11,8 +11,8 @@ #define ICE_LOGGER_I_H #include <Ice/Logger.h> -#include <IceUtil/FileUtil.h> #include <IceUtil/StringConverter.h> +#include <fstream> namespace Ice { @@ -40,7 +40,7 @@ private: std::string _formattedPrefix; const bool _convert; const IceUtil::StringConverterPtr _converter; - IceUtilInternal::ofstream _out; + std::ofstream _out; std::string _file; std::size_t _sizeMax; |