-
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/make not null #711
Dev/annagrin/make not null #711
Conversation
Introduction of explicit not_null constructor made it cumbersome to create not_nulls in c++14. Adding make_not_null helper. Usage (see tests): int i = 42; auto x = make_not_null(&i); helper(make_not_null(&i)); helper_const(make_not_null(&i));
include/gsl/pointers
Outdated
@@ -119,6 +119,11 @@ private: | |||
T ptr_; | |||
}; | |||
|
|||
template <class T> | |||
auto make_not_null(T&&t) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe run clang-format? T&&t
looks funny to me.
include/gsl/pointers
Outdated
@@ -119,6 +119,11 @@ private: | |||
T ptr_; | |||
}; | |||
|
|||
template <class T> | |||
auto make_not_null(T&&t) { | |||
return gsl::not_null<std::remove_cv_t<std::remove_reference_t<T>>>{t}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the purpose of make_not_null
is just to forward to the not_null
constructor, isn't std::forward
the right thing to use here instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice addition, thanks.
And I agree with @neilmacintosh, should it be
template <class T>
auto make_not_null(T&&t) {
return gsl::not_null<std::remove_cv_t<std::remove_reference_t<T>>>{std::forward<T>(t)};
}
…agrin/make_not_null
I have tested your PR in my code with gcc 8.2.0 and clang 5.0.2. Works fine. Thanks. It helps a lot. |
Thanks for the merge! |
Following suggestion from @kivadiu, added
make_not_null
helper to create anot_null
Introduction of explicit
not_null
constructor made it cumbersome to createnot_null
s, especially in before c++17. Addingmake_not_null
helper. Usage (see tests):See #699