Ticket #1550: boost.iostreams.diff

File boost.iostreams.diff, 4.0 KB (added by jensseidel@…, 15 years ago)
  • iostreams/detail/streambuf/indirect_streambuf.hpp

     
    124124    enum flag_type {
    125125        f_open             = 1,
    126126        f_output_buffered  = f_open << 1,
    127         f_auto_close       = f_output_buffered << 1,
     127// error: comma at end of enumerator list
     128        f_auto_close       = f_output_buffered << 1
    128129    };
    129130
    130131    optional<wrapper>           storage_;
  • iostreams/filter/gzip.hpp

     
    134134                 std::string comment    = "",
    135135                 std::time_t mtime      = 0 )
    136136        : zlib_params(level, method, window_bits, mem_level, strategy),
    137           file_name(file_name), mtime(mtime)
     137          file_name(file_name), comment(comment), mtime(mtime)
    138138        { }
    139139    std::string  file_name;
    140140    std::string  comment;
  • iostreams/filter/newline.hpp

     
    2020#include <boost/config.hpp>                // BOOST_STATIC_CONSTANT.
    2121#include <boost/iostreams/categories.hpp>
    2222#include <boost/iostreams/detail/char_traits.hpp>
     23#include <boost/iostreams/detail/ios.hpp>  // BOOST_IOSTREAMS_FAILURE
     24#include <boost/iostreams/read.hpp>        // get
     25#include <boost/iostreams/write.hpp>       // put
    2326#include <boost/iostreams/pipeline.hpp>
    2427#include <boost/mpl/bool.hpp>
    2528#include <boost/type_traits/is_convertible.hpp>
  • iostreams/filter/aggregate.hpp

     
    1818#include <boost/iostreams/categories.hpp>
    1919#include <boost/iostreams/detail/char_traits.hpp>
    2020#include <boost/iostreams/detail/ios.hpp>     // openmode, streamsize.
     21#include <boost/iostreams/read.hpp>           // check_eof
     22#include <boost/iostreams/constants.hpp>      // default_device_buffer_size
     23#include <boost/iostreams/operations.hpp>     // write
    2124#include <boost/iostreams/pipeline.hpp>
    2225#include <boost/mpl/bool.hpp>
    2326#include <boost/type_traits/is_convertible.hpp>
  • iostreams/filter/line.hpp

     
    1717#include <string>
    1818#include <boost/config.hpp>                        // BOOST_STATIC_CONSTANT.
    1919#include <boost/iostreams/categories.hpp>
     20#include <boost/iostreams/char_traits.hpp>
     21#include <boost/iostreams/read.hpp>                // check_eof
     22#include <boost/iostreams/operations.hpp>          // write
    2023#include <boost/iostreams/detail/ios.hpp>          // openmode, streamsize.
    2124#include <boost/iostreams/pipeline.hpp>
    2225
  • iostreams/input_sequence.hpp

     
    1616#include <boost/detail/workaround.hpp>
    1717#include <boost/iostreams/detail/wrap_unwrap.hpp>
    1818#include <boost/iostreams/traits.hpp>
     19#include <boost/iostreams/operations_fwd.hpp> // is_custom
    1920#include <boost/mpl/if.hpp>
    2021
    2122// Must come last.
  • iostreams/output_sequence.hpp

     
    1616#include <boost/detail/workaround.hpp>
    1717#include <boost/iostreams/detail/wrap_unwrap.hpp>
    1818#include <boost/iostreams/traits.hpp>
     19#include <boost/iostreams/operations_fwd.hpp> // is_custom
    1920#include <boost/mpl/if.hpp>
    2021
    2122// Must come last.