COMP: Added istringstream::clear() method to disambiguate the call from using string::clear or istrstream::clear.

This commit is contained in:
Brad King 2007-04-20 09:50:46 -04:00
parent 0b0258c548
commit 60d0d429b8
1 changed files with 4 additions and 0 deletions

View File

@ -173,6 +173,10 @@ public:
this->~istringstream(); this->~istringstream();
new (this) istringstream(s); new (this) istringstream(s);
} }
void clear(int flags)
{
this->IStrStream::clear(flags);
}
private: private:
istringstream(const istringstream&); istringstream(const istringstream&);
void operator=(const istringstream&); void operator=(const istringstream&);