|
Boost : |
From: hugo duncan (hugo.duncan_at_[hidden])
Date: 2002-11-05 21:30:05
streambuf_wrapping.hpp in the sandbox is missing some "typenames".
Index: streambuf_wrapping.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/io/streambuf_wrapping.hpp,v
retrieving revision 1.1
diff -r1.1 streambuf_wrapping.hpp
36,37c36,37
< , virtual public ::std::basic_ios< StreamBuf::char_type,
< StreamBuf::traits_type >
--- > , virtual public ::std::basic_ios< typename StreamBuf::char_type, > typename StreamBuf::traits_type > 41c41 < typedef ::std::basic_ios< StreamBuf::char_type, StreamBuf::traits_type > --- > typedef ::std::basic_ios< typename StreamBuf::char_type, typename StreamBuf::traits_type > 48,49c48,49 < typedef StreamBuf::char_type char_type; < typedef StreamBuf::traits_type traits_type; --- > typedef typename StreamBuf::char_type char_type; > typedef typename StreamBuf::traits_type traits_type; 109c109 < , public ::std::basic_istream< StreamBuf::char_type, StreamBuf::traits_type > --- > , public ::std::basic_istream< typename StreamBuf::char_type, typename StreamBuf::traits_type > 113c113 < typedef ::std::basic_istream< StreamBuf::char_type, StreamBuf::traits_type > --- > typedef ::std::basic_istream< typename StreamBuf::char_type, typename StreamBuf::traits_type > 120,121c120,121 < typedef StreamBuf::char_type char_type; < typedef StreamBuf::traits_type traits_type; --- > typedef typename StreamBuf::char_type char_type; > typedef typename StreamBuf::traits_type traits_type; 155c155 < , public ::std::basic_ostream< StreamBuf::char_type, StreamBuf::traits_type > --- > , public ::std::basic_ostream< typename StreamBuf::char_type, typename StreamBuf::traits_type > 159c159 < typedef ::std::basic_ostream< StreamBuf::char_type, StreamBuf::traits_type > --- > typedef ::std::basic_ostream< typename StreamBuf::char_type, typename StreamBuf::traits_type > 166,167c166,167 < typedef StreamBuf::char_type char_type; < typedef StreamBuf::traits_type traits_type; --- > typedef typename StreamBuf::char_type char_type; > typedef typename StreamBuf::traits_type traits_type; 201c201 < , public ::std::basic_iostream< StreamBuf::char_type, StreamBuf::traits_type > --- > , public ::std::basic_iostream< typename StreamBuf::char_type, typename StreamBuf::traits_type > 205c205 < typedef ::std::basic_iostream< StreamBuf::char_type, StreamBuf::traits_type > --- > typedef ::std::basic_iostream< typename StreamBuf::char_type, typename StreamBuf::traits_type > 212,213c212,213 < typedef StreamBuf::char_type char_type; < typedef StreamBuf::traits_type traits_type; --- > typedef typename StreamBuf::char_type char_type; > typedef typename StreamBuf::traits_type traits_type;
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk