summaryrefslogtreecommitdiff
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-10 09:41:58 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-10 09:41:58 -0400
commit65cc289047fc2a4b444838c690d9bd45eca04f7e (patch)
tree67b5a10c4edfe1df4c40bfdf006246f7652892c8 /Source/cmStandardIncludes.h
parent7e84fa0f1ded48f5605926de01af0f77f210dbe3 (diff)
downloadcmake-65cc289047fc2a4b444838c690d9bd45eca04f7e.tar.gz
Remove compile error and remove some warnings
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 22bb4bf639..20c4b0e09e 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&);