cmMakefile: Inline Intialize method in constructor
Since commit 80909041
(cmMakefile: Disable copy constructor, 2015-04-18)
the only call to cmMakefile::Initialize is in one constructor. Inline
it and drop the separate method.
This commit is contained in:
parent
f39f0c0aec
commit
42142d4fd2
|
@ -121,12 +121,6 @@ cmMakefile::cmMakefile(cmLocalGenerator* localGenerator)
|
|||
|
||||
this->AddDefaultDefinitions();
|
||||
|
||||
this->Initialize();
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
void cmMakefile::Initialize()
|
||||
{
|
||||
this->cmDefineRegex.compile("#cmakedefine[ \t]+([A-Za-z_0-9]*)");
|
||||
this->cmDefine01Regex.compile("#cmakedefine01[ \t]+([A-Za-z_0-9]*)");
|
||||
this->cmAtVarRegex.compile("(@[A-Za-z_0-9/.+-]+@)");
|
||||
|
|
|
@ -918,7 +918,6 @@ protected:
|
|||
private:
|
||||
cmMakefile(const cmMakefile& mf);
|
||||
cmMakefile& operator=(const cmMakefile& mf);
|
||||
void Initialize();
|
||||
|
||||
cmState::Snapshot StateSnapshot;
|
||||
|
||||
|
|
Loading…
Reference in New Issue