Ticket #4922: chain.hpp.patch

File chain.hpp.patch, 176 bytes (added by Victor Shugaev <victor.shugaev@…>, 12 years ago)

patch file for boost/iostreams/chain.hpp

Line 
1317c317
2< ~chain_impl() { try { close(); reset(); } catch (...) { } }
3---
4> ~chain_impl() { try { close(); } catch (...) { } try { reset(); } catch (...) { } }