summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-08-04 18:34:03 (GMT)
committerBrad King <brad.king@kitware.com>2004-08-04 18:34:03 (GMT)
commitf99d94891680c9b14a91579bc4e96b89c9246656 (patch)
treecdac2301d2e5d6518edf450684b24eadc65f74c1 /Source
parentb6da1d127196d82c58a3780432e9466b459d8543 (diff)
downloadCMake-f99d94891680c9b14a91579bc4e96b89c9246656.zip
CMake-f99d94891680c9b14a91579bc4e96b89c9246656.tar.gz
CMake-f99d94891680c9b14a91579bc4e96b89c9246656.tar.bz2
ERR: Removed duplicate default arguments.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 4df29b1..c552671 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -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.