summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index 22bb4bf..20c4b0e 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -176,8 +176,9 @@ private:
class cmInputStringStream: public std::istringstream
{
public:
+ typedef std::istringstream Superclass;
cmInputStringStream() {}
- cmInputStringStream(const char* c) : std::istringstream(c) {}
+ cmInputStringStream(const char* c) : Superclass(c) {}
private:
cmInputStringStream(const cmInputStringStream&);
void operator=(const cmInputStringStream&);