ERR: Removed duplicate default arguments.

This commit is contained in:
Brad King 2004-08-04 14:34:03 -04:00
parent b6da1d1271
commit f99d948916
1 changed files with 2 additions and 2 deletions

View File

@ -1424,8 +1424,8 @@ const char *cmMakefile::ExpandVariablesInString(std::string& source) const
const char *cmMakefile::ExpandVariablesInString(std::string& source,
bool escapeQuotes,
bool atOnly,
const char* filename = 0,
long line = -1) const
const char* filename,
long line) const
{
// This method replaces ${VAR} and @VAR@ where VAR is looked up
// with GetDefinition(), if not found in the map, nothing is expanded.