diff options
author | Jose <jose@zeroc.com> | 2015-04-13 16:35:20 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-04-13 16:35:20 +0200 |
commit | 9cc4c023d3fdef175cc79e03bb7a16ede1a5c634 (patch) | |
tree | 68f4329c4c77bde609df7ef2f4744242e50bd85f /cpp/src | |
parent | Remove FileUtil dependency for --depend-file (diff) | |
download | ice-9cc4c023d3fdef175cc79e03bb7a16ede1a5c634.tar.bz2 ice-9cc4c023d3fdef175cc79e03bb7a16ede1a5c634.tar.xz ice-9cc4c023d3fdef175cc79e03bb7a16ede1a5c634.zip |
Missing char* conversion
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Slice/Util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/Util.cpp b/cpp/src/Slice/Util.cpp index cacad7217f0..f8360f038c1 100644 --- a/cpp/src/Slice/Util.cpp +++ b/cpp/src/Slice/Util.cpp @@ -400,7 +400,7 @@ Slice::DependOutputUtil::DependOutputUtil(string& file) : _file(file) { if(!_file.empty()) { - _os.open(file, ios::out); + _os.open(file.c_str(), ios::out); } } |