summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLSafe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmXMLSafe.cxx')
-rw-r--r--Source/cmXMLSafe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmXMLSafe.cxx b/Source/cmXMLSafe.cxx
index 21b6bc3..5cf93ca 100644
--- a/Source/cmXMLSafe.cxx
+++ b/Source/cmXMLSafe.cxx
@@ -31,9 +31,9 @@ cmXMLSafe::cmXMLSafe(const char* s):
}
//----------------------------------------------------------------------------
-cmXMLSafe::cmXMLSafe(cmsys_stl::string const& str):
- Data(str.c_str()),
- Size(static_cast<unsigned long>(str.length())),
+cmXMLSafe::cmXMLSafe(cmsys_stl::string const& s):
+ Data(s.c_str()),
+ Size(static_cast<unsigned long>(s.length())),
DoQuotes(true)
{
}