diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-02-26 16:24:45 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-02-26 16:24:45 (GMT) |
commit | 8182ebca32a42c157697d6afdc07678afed1443d (patch) | |
tree | cb2037f156e21579082511e8d470731009485028 /Source/cmVisualStudioGeneratorOptions.h | |
parent | f7430b2538211ea59d5a853148de3b282796bf6a (diff) | |
download | CMake-8182ebca32a42c157697d6afdc07678afed1443d.zip CMake-8182ebca32a42c157697d6afdc07678afed1443d.tar.gz CMake-8182ebca32a42c157697d6afdc07678afed1443d.tar.bz2 |
cmIDEOptions: use std::string
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 2c56d42..5c3e415 100644 --- a/Source/cmVisualStudioGeneratorOptions.h +++ b/Source/cmVisualStudioGeneratorOptions.h @@ -107,7 +107,7 @@ private: std::string UnknownFlagField; - virtual void StoreUnknownFlag(const char* flag); + void StoreUnknownFlag(std::string const& flag) override; FlagValue TakeFlag(std::string const& key); }; |