id summary reporter owner description type status milestone component version severity resolution keywords cc 4055 msvc C4244 warning in boost/iostreams/detail/buffer.hpp(151). pluto@… Daniel James "hi, the boost.iostream compilation with stlport-5.2.1 produces a warning: {{{ boost_1_42_0/boost/iostreams/detail/buffer.hpp(151) : warning C4244: 'argument' : conversion from 'stlp_std::streamsize' to 'stlp_std::allocator<_Tp>::size_type', possible loss of data }}} the streamsize definition from preprocessed stlport char_traits: {{{ //The Win32 file io API support 64 bits access so streamoff and streamsize //has to reflect that. Do not change the stringbuf behavior. typedef __int64 streamoff; typedef streamoff streamsize; }}} passing __int64 data for size_t argument on win32 doesn't look good." Bugs closed Boost 1.43.0 iostreams Boost 1.42.0 Problem fixed k.kowaliczek@…