diff options
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 8bcaa84..c1d7bef 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -846,8 +846,8 @@ bool cmSystemTools::ParseFunction(std::ifstream& fin, if(lastLine.find(inbuffer)) { done = true; - std::string args = lastLine.match(1); - cmSystemTools::GetArguments(args, arguments); + std::string gargs = lastLine.match(1); + cmSystemTools::GetArguments(gargs, arguments); } else { |