Explorar o código

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

Brad King %!s(int64=18) %!d(string=hai) anos
pai
achega
60d0d429b8
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      Source/kwsys/kwsys_ios_sstream.h.in

+ 4 - 0
Source/kwsys/kwsys_ios_sstream.h.in

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