cmGlobalVisualStudio8Generator: Drop unused GetDocumentation method

This has been moved to the factory.
This commit is contained in:
Brad King 2017-04-19 14:43:40 -04:00
parent 44f0d2d991
commit 6e66fe5f97
2 changed files with 0 additions and 10 deletions

View File

@ -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";

View File

@ -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();