diff options
author | Brad King <brad.king@kitware.com> | 2019-01-09 11:51:12 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-10 07:52:51 -0500 |
commit | 163cc8bbdd20fceaa6958a071e3d15f53b224864 (patch) | |
tree | 2c925c3df0b20c073d0c529fd31477c572bd7f1f /Source/cmGlobalVisualStudio15Generator.cxx | |
parent | 6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79 (diff) | |
download | cmake-163cc8bbdd20fceaa6958a071e3d15f53b224864.tar.gz |
VS: Convert WriteSLNHeader to non-virtual lookup table
Diffstat (limited to 'Source/cmGlobalVisualStudio15Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio15Generator.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio15Generator.cxx b/Source/cmGlobalVisualStudio15Generator.cxx index 4a08352ab9..2af17e8ea7 100644 --- a/Source/cmGlobalVisualStudio15Generator.cxx +++ b/Source/cmGlobalVisualStudio15Generator.cxx @@ -97,17 +97,6 @@ bool cmGlobalVisualStudio15Generator::MatchesGeneratorName( return false; } -void cmGlobalVisualStudio15Generator::WriteSLNHeader(std::ostream& fout) -{ - // Visual Studio 15 writes .sln format 12.00 - fout << "Microsoft Visual Studio Solution File, Format Version 12.00\n"; - if (this->ExpressEdition) { - fout << "# Visual Studio Express 15 for Windows Desktop\n"; - } else { - fout << "# Visual Studio 15\n"; - } -} - bool cmGlobalVisualStudio15Generator::SetGeneratorInstance( std::string const& i, cmMakefile* mf) { |