diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-08-24 13:43:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-08-27 19:48:57 (GMT) |
commit | 50fbfee3a02e7099a3909d81597f4b8047847ece (patch) | |
tree | c8f6053448e3428b1d9f32c0c1141c41cd1d9f59 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | e33c6c357b61ed0cc5b9f7c01e4ea04deca26b39 (diff) | |
download | CMake-50fbfee3a02e7099a3909d81597f4b8047847ece.zip CMake-50fbfee3a02e7099a3909d81597f4b8047847ece.tar.gz CMake-50fbfee3a02e7099a3909d81597f4b8047847ece.tar.bz2 |
cmLocalGenerator: return directories as const std::string&
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index b35b116..73f4a8e 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -118,7 +118,7 @@ void cmLocalVisualStudio7Generator::WriteProjectFiles() if (this->GetCurrentBinaryDirectory() != this->GetSourceDirectory()) { if (!cmSystemTools::MakeDirectory(this->GetCurrentBinaryDirectory())) { cmSystemTools::Error("Error creating directory ", - this->GetCurrentBinaryDirectory()); + this->GetCurrentBinaryDirectory().c_str()); } } |