diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-05-19 14:30:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-05-19 14:33:26 (GMT) |
commit | 273257222ee6207dcb9ad290a08db5d6b7cc9db8 (patch) | |
tree | 0cc1b5bc33298f556f4438ba04dc689a9f4c09d1 /Source/cmake.h | |
parent | 7024fe33b8ea1d1fba3bf881f8c530688107c505 (diff) | |
download | CMake-273257222ee6207dcb9ad290a08db5d6b7cc9db8.zip CMake-273257222ee6207dcb9ad290a08db5d6b7cc9db8.tar.gz CMake-273257222ee6207dcb9ad290a08db5d6b7cc9db8.tar.bz2 |
Source: change parameters to std::string
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 4a345cf..34d9bcd 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -495,13 +495,13 @@ protected: */ int CheckBuildSystem(); - void SetDirectoriesFromFile(const char* arg); + void SetDirectoriesFromFile(const std::string& arg); //! Make sure all commands are what they say they are and there is no /// macros. void CleanupCommandsAndMacros(); - void GenerateGraphViz(const char* fileName) const; + void GenerateGraphViz(const std::string& fileName) const; private: ProgressCallbackType ProgressCallback; |