diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-02-22 02:18:59 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-02-22 02:18:59 (GMT) |
commit | b723fe3d7d65a748ad53f77b1e0b014c673212fa (patch) | |
tree | 759ff51aa9b19fb7976c6224997d2bad8c427e49 /Source/cmVisualStudioGeneratorOptions.h | |
parent | 42793aeabc58607fb4ed37039f69f368df0196e7 (diff) | |
download | CMake-b723fe3d7d65a748ad53f77b1e0b014c673212fa.zip CMake-b723fe3d7d65a748ad53f77b1e0b014c673212fa.tar.gz CMake-b723fe3d7d65a748ad53f77b1e0b014c673212fa.tar.bz2 |
VS: Convert loops to C++11, other C++ improvements
Diffstat (limited to 'Source/cmVisualStudioGeneratorOptions.h')
-rw-r--r-- | Source/cmVisualStudioGeneratorOptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudioGeneratorOptions.h b/Source/cmVisualStudioGeneratorOptions.h index 2dffe9b..2c56d42 100644 --- a/Source/cmVisualStudioGeneratorOptions.h +++ b/Source/cmVisualStudioGeneratorOptions.h @@ -91,7 +91,7 @@ public: const char* suffix, const std::string& lang); void OutputFlagMap(std::ostream& fout, const char* indent); - void SetConfiguration(const char* config); + void SetConfiguration(const std::string& config); private: cmLocalVisualStudioGenerator* LocalGenerator; |