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 /php/src/php7/Communicator.cpp | |
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 'php/src/php7/Communicator.cpp')
-rw-r--r-- | php/src/php7/Communicator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/php/src/php7/Communicator.cpp b/php/src/php7/Communicator.cpp index e9c00aa4c28..e6c34e4b5ac 100644 --- a/php/src/php7/Communicator.cpp +++ b/php/src/php7/Communicator.cpp @@ -18,6 +18,7 @@ #include <IceUtil/MutexPtrLock.h> #include <IceUtil/StringUtil.h> #include <IceUtil/Timer.h> +#include <fstream> #ifdef getcwd #undef getcwd @@ -1531,7 +1532,7 @@ parseProfiles(const string& file) // ice.config = config-file // ice.options = args // - IceUtilInternal::ifstream in(file); + ifstream in(IceUtilInternal::streamFilename(file)); if(!in) { php_error_docref(0, E_WARNING, "unable to open Ice profiles in %s", file.c_str()); |