COMP: Added istringstream::clear() method to disambiguate the call from using string::clear or istrstream::clear.
This commit is contained in:
parent
0b0258c548
commit
60d0d429b8
|
@ -173,6 +173,10 @@ public:
|
|||
this->~istringstream();
|
||||
new (this) istringstream(s);
|
||||
}
|
||||
void clear(int flags)
|
||||
{
|
||||
this->IStrStream::clear(flags);
|
||||
}
|
||||
private:
|
||||
istringstream(const istringstream&);
|
||||
void operator=(const istringstream&);
|
||||
|
|
Loading…
Reference in New Issue