mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
cmGetCMakePropertyCommand: Don't explicitly specify default param.
This commit is contained in:
@@ -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, ";");
|
||||
|
||||
Reference in New Issue
Block a user