Ninja: Remove some incorrect comments adding no value.
This commit is contained in:
parent
2f2d4da9dd
commit
0bd7279fd9
|
@ -162,32 +162,24 @@ public:
|
|||
public:
|
||||
cmGlobalNinjaGenerator(cmake* cm);
|
||||
|
||||
/// Convenience method for creating an instance of this class.
|
||||
static cmGlobalGeneratorFactory* NewFactory() {
|
||||
return new cmGlobalGeneratorSimpleFactory<cmGlobalNinjaGenerator>(); }
|
||||
|
||||
/// Destructor.
|
||||
virtual ~cmGlobalNinjaGenerator() { }
|
||||
|
||||
/// Overloaded methods. @see cmGlobalGenerator::CreateLocalGenerator()
|
||||
virtual cmLocalGenerator* CreateLocalGenerator(cmState::Snapshot snapshot);
|
||||
|
||||
/// Overloaded methods. @see cmGlobalGenerator::GetName().
|
||||
virtual std::string GetName() const {
|
||||
return cmGlobalNinjaGenerator::GetActualName(); }
|
||||
|
||||
/// @return the name of this generator.
|
||||
static std::string GetActualName() { return "Ninja"; }
|
||||
|
||||
/// Overloaded methods. @see cmGlobalGenerator::GetDocumentation()
|
||||
static void GetDocumentation(cmDocumentationEntry& entry);
|
||||
|
||||
/// Overloaded methods. @see cmGlobalGenerator::EnableLanguage()
|
||||
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
||||
cmMakefile* mf,
|
||||
bool optional);
|
||||
|
||||
/// Overloaded methods. @see cmGlobalGenerator::GenerateBuildCommand()
|
||||
virtual void GenerateBuildCommand(
|
||||
std::vector<std::string>& makeCommand,
|
||||
const std::string& makeProgram,
|
||||
|
@ -306,11 +298,8 @@ public:
|
|||
|
||||
protected:
|
||||
|
||||
/// Overloaded methods. @see cmGlobalGenerator::Generate()
|
||||
virtual void Generate();
|
||||
|
||||
/// Overloaded methods.
|
||||
/// @see cmGlobalGenerator::CheckALLOW_DUPLICATE_CUSTOM_TARGETS()
|
||||
virtual bool CheckALLOW_DUPLICATE_CUSTOM_TARGETS() const { return true; }
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue