From 9e7a3d7ecef2d42a0a78bf8842df111ed207402d Mon Sep 17 00:00:00 2001 From: Dave Partyka Date: Thu, 6 Aug 2009 19:01:13 -0400 Subject: [PATCH] COMP: attempt to fix more 'hidden by' warnings. --- Source/kwsys/SystemTools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index fd0a19bfc..9b7a6ed8e 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -3336,7 +3336,7 @@ SystemTools while(first != last) { result.append("/"); - result.append(*first++); + result.append((*first++)); } // Return the concatenated result.