diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-17 14:51:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-17 14:51:23 (GMT) |
commit | c3007233ec8fc164a1e5de539bebdeb11cae3d8c (patch) | |
tree | 7e6222c18c3848e5eaf322e3c5f8d9244768c577 /Source/cmSystemTools.cxx | |
parent | a465ee3c6bcca6da501cc1499f17ca192b908927 (diff) | |
download | CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.zip CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.tar.gz CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.tar.bz2 |
Rename variables to remove warnings
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 { |