diff --git a/src/common/variant.cpp b/src/common/variant.cpp index b21b9965f2..711f552445 100644 --- a/src/common/variant.cpp +++ b/src/common/variant.cpp @@ -219,6 +219,9 @@ public: virtual bool Write(wxSTD ostream& str) const; #endif virtual bool Write(wxString& str) const; +#if wxUSE_STD_IOSTREAM + virtual bool Read(wxSTD istream& str); +#endif virtual bool Read(wxString& str); virtual wxString GetType() const { return wxT("stringlist"); }; @@ -735,7 +738,7 @@ public: virtual bool Read(wxString& str); virtual bool Write(wxString& str) const; #if wxUSE_STD_IOSTREAM - virtual bool Read(wxSTD istream& str); + virtual bool Read(wxSTD istream& WXUNUSED(str)) { return false; }; #endif #if wxUSE_STREAMS virtual bool Read(wxInputStream& str);