mirror of
https://github.com/microsoft/GSL.git
synced 2025-02-20 08:28:09 -05:00
* Fixes issue with dereferencing operator issue #491 introduced in PR #513 dereferencing operator added in PR#513 returned a copy of the object instead of reference to it. Adding decltype(auto) as return type of operator* fixes this issue. * added more tests for not_null::operator*