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/cmGlobalVisualStudio10Generator.cxx | |
parent | 6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79 (diff) | |
download | cmake-163cc8bbdd20fceaa6958a071e3d15f53b224864.tar.gz |
VS: Convert WriteSLNHeader to non-virtual lookup table
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx index 6be1e2324b..4709194b7e 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -488,16 +488,6 @@ std::string cmGlobalVisualStudio10Generator::SelectWindowsCEToolset() const return ""; } -void cmGlobalVisualStudio10Generator::WriteSLNHeader(std::ostream& fout) -{ - fout << "Microsoft Visual Studio Solution File, Format Version 11.00\n"; - if (this->ExpressEdition) { - fout << "# Visual C++ Express 2010\n"; - } else { - fout << "# Visual Studio 2010\n"; - } -} - ///! Create a local generator appropriate to this Global Generator cmLocalGenerator* cmGlobalVisualStudio10Generator::CreateLocalGenerator( cmMakefile* mf) |