summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Glob.cxx
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2006-03-10 17:01:29 (GMT)
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2006-03-10 17:01:29 (GMT)
commit5fe4a9dcef6c6a349b3c0a5f70c94f033e466441 (patch)
tree7ca6db465d64676d984e3685f05030068af277b4 /Source/kwsys/Glob.cxx
parent1ef5bdf669ce000f8b887fb9faf93b97c05339eb (diff)
downloadCMake-5fe4a9dcef6c6a349b3c0a5f70c94f033e466441.zip
CMake-5fe4a9dcef6c6a349b3c0a5f70c94f033e466441.tar.gz
CMake-5fe4a9dcef6c6a349b3c0a5f70c94f033e466441.tar.bz2
STYLE: Make sure to use the proper cast.
Diffstat (limited to 'Source/kwsys/Glob.cxx')
-rw-r--r--Source/kwsys/Glob.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/Glob.cxx b/Source/kwsys/Glob.cxx
index 011986b..791d58f 100644
--- a/Source/kwsys/Glob.cxx
+++ b/Source/kwsys/Glob.cxx
@@ -396,7 +396,7 @@ bool Glob::FindFiles(const kwsys_stl::string& inexpr)
}
else
{
- cexpr.append(1, (char)ch);
+ cexpr.append(1, static_cast<char>(ch));
}
}
if ( cexpr.size() > 0 )