Skip to content
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

Merged
merged 12 commits into from
Aug 13, 2018

Conversation

annagrin
Copy link

@annagrin annagrin commented Aug 1, 2018

Following suggestion from @kivadiu, added make_not_null helper to create a not_null

Introduction of explicit not_null constructor made it cumbersome to create not_nulls, especially in before c++17. 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));

See #699

Anna Gringauze added 5 commits June 15, 2018 10:24
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));
@@ -119,6 +119,11 @@ private:
T ptr_;
};

template <class T>
auto make_not_null(T&&t) {
Copy link
Contributor

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.

@@ -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};
Copy link
Contributor

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?

Copy link

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)};
}

@kivadiu
Copy link

kivadiu commented Aug 13, 2018

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.
Looking forward to pull the merge from master.

@annagrin annagrin merged commit 831584d into microsoft:master Aug 13, 2018
@kivadiu
Copy link

kivadiu commented Aug 13, 2018

Thanks for the merge!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants