summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index 70c280a..ffae33a 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -131,4 +131,16 @@ inline bool operator==(std::string const& a, const char* b)
{ return (a==std::string(b)); }
# endif // end CM_SGI_CC_720
+
+struct cmStdString : public std::string
+{
+ typedef std::string Parent;
+ cmStdString(const char* s) : Parent(s)
+ {
+ }
+ cmStdString(std::string const&s) : Parent(s)
+ {
+ }
+};
+
#endif