summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/LoggerI.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-07-08 10:50:18 -0400
committerBernard Normier <bernard@zeroc.com>2016-07-08 10:50:18 -0400
commit3e6c7c189ba3d623845dfc385f143cc49e4be8aa (patch)
tree5e0dfa828891d67c230736a6cf4f5adeb2216097 /cpp/src/Ice/LoggerI.h
parentAdditional UWP fix for ICE-7172 (diff)
downloadice-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.h4
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;