diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-08 20:46:08 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-08 20:46:08 (GMT) |
commit | f5d95fb078ec48755762931fe2882ed1cbe1171e (patch) | |
tree | 945dca55d34b543db452c586aba0de863cf25cec /Source/cmStandardIncludes.h | |
parent | c72462ffb1c75573e0d67a7101438a62bfc2fda1 (diff) | |
download | CMake-f5d95fb078ec48755762931fe2882ed1cbe1171e.zip CMake-f5d95fb078ec48755762931fe2882ed1cbe1171e.tar.gz CMake-f5d95fb078ec48755762931fe2882ed1cbe1171e.tar.bz2 |
Complete rework of makefile generators expect trouble
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index d514ecf..ceab7fc 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -219,9 +219,9 @@ class cmIStringStream: private std::string, public std::istrstream public: typedef std::string StdString; typedef std::istrstream IStrStream; - cmIStringStream(): StdString(), IStrStream(this->StdString::c_str()) {} + cmIStringStream(): StdString(), IStrStream(StdString::c_str()) {} cmIStringStream(const std::string& s): - StdString(s), IStrStream(this->StdString::c_str()) {} + StdString(s), IStrStream(StdString::c_str()) {} std::string str() const { return *this; } void str(const std::string& s) { |