mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 23:28:32 -05:00
STYLE: some m_ to this-> cleanup
This commit is contained in:
@@ -26,7 +26,7 @@ bool cmIncludeExternalMSProjectCommand::InitialPass(std::vector<std::string> con
|
||||
}
|
||||
// only compile this for win32 to avoid coverage errors
|
||||
#ifdef _WIN32
|
||||
if(m_Makefile->GetDefinition("WIN32"))
|
||||
if(this->Makefile->GetDefinition("WIN32"))
|
||||
{
|
||||
std::string location = args[1];
|
||||
|
||||
@@ -45,7 +45,7 @@ bool cmIncludeExternalMSProjectCommand::InitialPass(std::vector<std::string> con
|
||||
|
||||
const char* no_output = 0;
|
||||
const char* no_working_directory = 0;
|
||||
m_Makefile->AddUtilityCommand(utility_name.c_str(), true,
|
||||
this->Makefile->AddUtilityCommand(utility_name.c_str(), true,
|
||||
no_output, depends,
|
||||
no_working_directory,
|
||||
args[0].c_str(), args[1].c_str());
|
||||
|
||||
Reference in New Issue
Block a user