diff options
author | Brad King <brad.king@kitware.com> | 2017-04-19 18:43:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-04-19 18:45:00 (GMT) |
commit | 6e66fe5f977c3d8e0a4b24236a00b31f325ef5a3 (patch) | |
tree | cc66f6814488ee662ac95f7077613b53f1bf1636 | |
parent | 44f0d2d9913595e214048b6d5a2b9ab2e9d1cf46 (diff) | |
download | CMake-6e66fe5f977c3d8e0a4b24236a00b31f325ef5a3.zip CMake-6e66fe5f977c3d8e0a4b24236a00b31f325ef5a3.tar.gz CMake-6e66fe5f977c3d8e0a4b24236a00b31f325ef5a3.tar.bz2 |
cmGlobalVisualStudio8Generator: Drop unused GetDocumentation method
This has been moved to the factory.
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 7 | ||||
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 3 |
2 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 634db7f..1fcb5ac 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -153,13 +153,6 @@ void cmGlobalVisualStudio8Generator::WriteSLNHeader(std::ostream& fout) fout << "# Visual Studio 2005\n"; } -void cmGlobalVisualStudio8Generator::GetDocumentation( - cmDocumentationEntry& entry) -{ - entry.Name = cmGlobalVisualStudio8Generator::GetActualName(); - entry.Brief = "Generates Visual Studio 8 2005 project files."; -} - std::string cmGlobalVisualStudio8Generator::GetGenerateStampList() { return "generate.stamp.list"; diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index 03fa077..4723b83 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -20,9 +20,6 @@ public: ///! Get the name for the generator. virtual std::string GetName() const { return this->Name; } - /** Get the documentation entry for this generator. */ - static void GetDocumentation(cmDocumentationEntry& entry); - /** Get the name of the main stamp list file. */ static std::string GetGenerateStampList(); |