mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
cmLocalGenerator: Avoid unnecessary const-ness propagation
This commit is contained in:
@@ -103,10 +103,7 @@ public:
|
||||
bool IsRootMakefile() const;
|
||||
|
||||
//! Get the makefile for this generator
|
||||
cmMakefile* GetMakefile() { return this->Makefile; }
|
||||
|
||||
//! Get the makefile for this generator, const version
|
||||
cmMakefile const* GetMakefile() const { return this->Makefile; }
|
||||
cmMakefile* GetMakefile() const { return this->Makefile; }
|
||||
|
||||
//! Get the GlobalGenerator this is associated with
|
||||
cmGlobalGenerator* GetGlobalGenerator() { return this->GlobalGenerator; }
|
||||
|
||||
Reference in New Issue
Block a user