You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mmio::mapped_file<...>::open now returns a mmio::open_result instead of bool. mmio::open_result is contextually convertible to bool, so it should not break most code, but users should be aware of it anyway.
Added support for greatly improved error messages when encountering io errors
Added begin/end to mmio::mapped_file<...> (and thus support for ranges)
mmio::mapped_file<...>::open now returns an opaque std::error_code (via mmio::open_result) that provides a much more descriptive overview of what caused io to fail.