id summary reporter owner description type status milestone component version severity resolution keywords cc 11731 iostreams classes do not support C++11 move semantics Josh Chia Jonathan Turkanis "At least some iostreams classes do not support C++11 move semantics. Attempts to ""move-construct"" them result in compiler errors. Such classes include but are probably not limited to filtering_istream. #include struct Foo { Foo(Foo&& o) : f(std::move(o.f)) { } boost::iostreams::filtering_istream f; }; " Bugs new To Be Determined iostreams Boost Development Trunk Problem ki.stfu@…