diff options
author | Brad King <brad.king@kitware.com> | 2017-02-15 15:40:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-15 15:41:36 (GMT) |
commit | 109b8a6fd32be9886de71f98170e0c512ac9883f (patch) | |
tree | 092fe04e949e31e691bae6b18f4b69fe9ca08fe4 /Source/cmIDEOptions.h | |
parent | bd5ea6993c8376cd3612100019e15ee256a758d8 (diff) | |
download | CMake-109b8a6fd32be9886de71f98170e0c512ac9883f.zip CMake-109b8a6fd32be9886de71f98170e0c512ac9883f.tar.gz CMake-109b8a6fd32be9886de71f98170e0c512ac9883f.tar.bz2 |
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 aaa9d3d..465cf2c 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; |