mirror of
https://github.com/microsoft/GSL.git
synced 2025-03-12 22:28:06 -04: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*