-
Notifications
You must be signed in to change notification settings - Fork 745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev/annagrin/sloppy not null #712
Dev/annagrin/sloppy not null #712
Conversation
@annagrin I like the idea of offering this as a concrete and temporary transition step in the absence of tooling. This class is really just to help people migrate from earlier versions of |
bd92692
to
e8fc0b8
Compare
Done, thanks! |
Created a helper class to help move code that uses implicit
not_null
constructor to explicit. The transition would work as follows:not_null
in your code bysloppy_not_null
sloppy_not_null
s bynot_null
, fix compilation errors,redesign as needed, compile and test
sloppy_not_null
s remainThe transition to explicit
not_null
constructor is worth it:Including cases when
not_null
is silently transformed into a raw pointer and back along the call chainIt propagates not_null types on API to their correct place, removes assertions and simplifies code
not_null
should be a stricter type than a raw pointer, so implicit conversion is hiding useful information and potential failuresIn the near future, tooling should be created to help insert explicit constructor calls and make the transition easier.
This is partially resolves issue #699 (the rest needs to be done in tooling).