]> git.mxchange.org Git - simgear.git/commitdiff
Update for non-conformal (older) compilers
authorehofman <ehofman>
Fri, 12 Mar 2004 08:59:12 +0000 (08:59 +0000)
committerehofman <ehofman>
Fri, 12 Mar 2004 08:59:12 +0000 (08:59 +0000)
simgear/misc/zfstream.hxx

index 2b0f10c4d7515bf52fc56d1793cbd3b5b714a4c7..e226166c985bff5ef7db4ab0da2fbab4796e2061 100644 (file)
@@ -141,7 +141,11 @@ public:
 protected:
 
     virtual int_type underflow();
+#ifndef SG_HAVE_STD_INCLUDES
+    virtual int_type overflow( int_type c = traits_type::eof() );
+#else
     virtual int_type overflow( int_type c = streambuf::traits_type::eof() );
+#endif
 
 private: