Browse Source

cmGlobalVisualStudio8Generator: Drop unused GetDocumentation method

This has been moved to the factory.
pull/302/head
Brad King 8 years ago
parent
commit
6e66fe5f97
  1. 7
      Source/cmGlobalVisualStudio8Generator.cxx
  2. 3
      Source/cmGlobalVisualStudio8Generator.h

7
Source/cmGlobalVisualStudio8Generator.cxx

@ -153,13 +153,6 @@ void cmGlobalVisualStudio8Generator::WriteSLNHeader(std::ostream& fout)
fout << "# Visual Studio 2005\n"; 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() std::string cmGlobalVisualStudio8Generator::GetGenerateStampList()
{ {
return "generate.stamp.list"; return "generate.stamp.list";

3
Source/cmGlobalVisualStudio8Generator.h

@ -20,9 +20,6 @@ public:
///! Get the name for the generator. ///! Get the name for the generator.
virtual std::string GetName() const { return this->Name; } 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. */ /** Get the name of the main stamp list file. */
static std::string GetGenerateStampList(); static std::string GetGenerateStampList();

Loading…
Cancel
Save