Remove compile error and remove some warnings

This commit is contained in:
Andy Cedilnik 2002-10-10 09:41:58 -04:00
parent 7e84fa0f1d
commit 65cc289047
3 changed files with 8 additions and 7 deletions

View File

@ -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&);