cmGetCMakePropertyCommand: Don't explicitly specify default param.

This commit is contained in:
Stephen Kelly 2015-06-07 15:11:42 +02:00
parent 021c4b6f2b
commit 046aafff12
1 changed files with 1 additions and 2 deletions

View File

@ -32,8 +32,7 @@ bool cmGetCMakePropertyCommand
if ( args[1] == "VARIABLES" )
{
int cacheonly = 0;
std::vector<std::string> vars = this->Makefile->GetDefinitions(cacheonly);
std::vector<std::string> vars = this->Makefile->GetDefinitions();
if (!vars.empty())
{
output = cmJoin(vars, ";");