From ef07a8565ee0bf80918d4178058cd2ded8722db8 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 25 Oct 2004 13:40:17 -0400 Subject: [PATCH] COMP: remove an unused variable warning --- Source/cmSystemTools.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index e2f830f06..7bb128364 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1220,7 +1220,6 @@ std::string cmSystemTools::RelativePath(const char* local, const char* remote) } // split up both paths into arrays of strings using / as a separator - std::string localString = local; std::vector localSplit = cmSystemTools::SplitString(local, '/', true); std::vector remoteSplit = cmSystemTools::SplitString(remote, '/', true); std::vector commonPath; // store shared parts of path in this array