diff options
author | Brad King <brad.king@kitware.com> | 2017-02-15 10:40:00 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-15 10:41:36 -0500 |
commit | 109b8a6fd32be9886de71f98170e0c512ac9883f (patch) | |
tree | 092fe04e949e31e691bae6b18f4b69fe9ca08fe4 /Source/cmIDEOptions.h | |
parent | bd5ea6993c8376cd3612100019e15ee256a758d8 (diff) | |
download | cmake-109b8a6fd32be9886de71f98170e0c512ac9883f.tar.gz |
VS: Refactor AdditionalOptions generation
Store unknown flags directly in a flag map entry for `AdditionalOptions`
instead of having a separate member for them. This avoids duplicating
the output generation logic for the entry.
Diffstat (limited to 'Source/cmIDEOptions.h')
-rw-r--r-- | Source/cmIDEOptions.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmIDEOptions.h b/Source/cmIDEOptions.h index aaa9d3d5de..465cf2c58f 100644 --- a/Source/cmIDEOptions.h +++ b/Source/cmIDEOptions.h @@ -74,9 +74,6 @@ protected: // Preprocessor definitions. std::vector<std::string> Defines; - // Unrecognized flags that get no special handling. - std::string FlagString; - bool DoingDefine; bool AllowDefine; bool AllowSlash; |