cmGetCMakePropertyCommand: Don't explicitly specify default param.
This commit is contained in:
parent
021c4b6f2b
commit
046aafff12
|
@ -32,8 +32,7 @@ bool cmGetCMakePropertyCommand
|
||||||
|
|
||||||
if ( args[1] == "VARIABLES" )
|
if ( args[1] == "VARIABLES" )
|
||||||
{
|
{
|
||||||
int cacheonly = 0;
|
std::vector<std::string> vars = this->Makefile->GetDefinitions();
|
||||||
std::vector<std::string> vars = this->Makefile->GetDefinitions(cacheonly);
|
|
||||||
if (!vars.empty())
|
if (!vars.empty())
|
||||||
{
|
{
|
||||||
output = cmJoin(vars, ";");
|
output = cmJoin(vars, ";");
|
||||||
|
|
Loading…
Reference in New Issue