Skip to content
Snippets Groups Projects
Commit c5e55ad4 authored by Brad King's avatar Brad King
Browse files

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

COMP: Added istringstream::clear() method to disambiguate the call from using string::clear or istrstream::clear.
parent 8ffe0023
No related branches found
No related tags found
No related merge requests found
......@@ -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&);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment