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();
|
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&);
|
||||||
|
|
Loading…
Reference in New Issue