summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/PropertiesI.cpp
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/PropertiesI.cpp
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/PropertiesI.cpp')
-rw-r--r--cpp/src/Ice/PropertiesI.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/PropertiesI.cpp b/cpp/src/Ice/PropertiesI.cpp
index 1f03133ddf3..6570d16e9da 100644
--- a/cpp/src/Ice/PropertiesI.cpp
+++ b/cpp/src/Ice/PropertiesI.cpp
@@ -16,6 +16,7 @@
#include <Ice/Logger.h>
#include <Ice/LoggerUtil.h>
#include <Ice/Communicator.h>
+#include <fstream>
using namespace std;
using namespace Ice;
@@ -398,7 +399,7 @@ Ice::PropertiesI::load(const std::string& file)
else
#endif
{
- IceUtilInternal::ifstream in(file);
+ ifstream in(IceUtilInternal::streamFilename(file));
if(!in)
{
FileException ex(__FILE__, __LINE__);