summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLSafe.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-29 22:19:40 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-02-05 19:44:25 (GMT)
commit421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0 (patch)
tree3cddbf25b8b42e59b401e0d0a5670dab2a4c7e83 /Source/cmXMLSafe.h
parent098160d5f2a1aa35d2f14c585dd87cefd8f56f41 (diff)
downloadCMake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.zip
CMake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.tar.gz
CMake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.tar.bz2
Remove use of cmsys_stl.
It is not needed.
Diffstat (limited to 'Source/cmXMLSafe.h')
-rw-r--r--Source/cmXMLSafe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmXMLSafe.h b/Source/cmXMLSafe.h
index cba9f39..c23a90c 100644
--- a/Source/cmXMLSafe.h
+++ b/Source/cmXMLSafe.h
@@ -24,7 +24,7 @@ public:
/** Construct with the data to be written. This assumes the data
will exist for the duration of this object's life. */
cmXMLSafe(const char* s);
- cmXMLSafe(cmsys_stl::string const& s);
+ cmXMLSafe(std::string const& s);
/** Specify whether to escape quotes too. This is needed when
writing the content of an attribute value. By default quotes
@@ -32,7 +32,7 @@ public:
cmXMLSafe& Quotes(bool b = true);
/** Get the escaped data as a string. */
- cmsys_stl::string str();
+ std::string str();
private:
char const* Data;
unsigned long Size;