mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 19:08:07 +08:00
STYLE: some m_ to this-> cleanup
This commit is contained in:
@@ -133,14 +133,14 @@ bool cmExecProgramCommand::InitialPass(std::vector<std::string> const& args)
|
||||
}
|
||||
|
||||
std::string coutput = std::string(output, first, last-first+1);
|
||||
m_Makefile->AddDefinition(output_variable.c_str(), coutput.c_str());
|
||||
this->Makefile->AddDefinition(output_variable.c_str(), coutput.c_str());
|
||||
}
|
||||
|
||||
if ( return_variable.size() > 0 )
|
||||
{
|
||||
char buffer[100];
|
||||
sprintf(buffer, "%d", retVal);
|
||||
m_Makefile->AddDefinition(return_variable.c_str(), buffer);
|
||||
this->Makefile->AddDefinition(return_variable.c_str(), buffer);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user