From f99d94891680c9b14a91579bc4e96b89c9246656 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 4 Aug 2004 14:34:03 -0400 Subject: [PATCH] ERR: Removed duplicate default arguments. --- Source/cmMakefile.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 4df29b174..c55267144 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.