-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Strip noexcept from cpp17 function type bindings #5992
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
Draft
Skylion007
wants to merge
4
commits into
pybind:master
Choose a base branch
from
Skylion007:skylion007/cpp17-claude-noexcept-2026-02-20
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+401
−2
Draft
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -370,6 +370,48 @@ class cpp_function : public function { | |
| extra...); | ||
| } | ||
|
|
||
| #ifdef __cpp_noexcept_function_type | ||
| /// Construct a cpp_function from a class method (non-const, no ref-qualifier, noexcept) | ||
| template <typename Return, typename Class, typename... Arg, typename... Extra> | ||
| // NOLINTNEXTLINE(google-explicit-constructor) | ||
| cpp_function(Return (Class::*f)(Arg...) noexcept, const Extra &...extra) { | ||
| initialize( | ||
| [f](Class *c, Arg... args) -> Return { return (c->*f)(std::forward<Arg>(args)...); }, | ||
| (Return (*)(Class *, Arg...)) nullptr, | ||
| extra...); | ||
| } | ||
|
|
||
| /// Construct a cpp_function from a class method (non-const, lvalue ref-qualifier, noexcept) | ||
| template <typename Return, typename Class, typename... Arg, typename... Extra> | ||
| // NOLINTNEXTLINE(google-explicit-constructor) | ||
| cpp_function(Return (Class::*f)(Arg...) & noexcept, const Extra &...extra) { | ||
| initialize( | ||
| [f](Class *c, Arg... args) -> Return { return (c->*f)(std::forward<Arg>(args)...); }, | ||
| (Return (*)(Class *, Arg...)) nullptr, | ||
| extra...); | ||
| } | ||
|
|
||
| /// Construct a cpp_function from a class method (const, no ref-qualifier, noexcept) | ||
| template <typename Return, typename Class, typename... Arg, typename... Extra> | ||
| // NOLINTNEXTLINE(google-explicit-constructor) | ||
| cpp_function(Return (Class::*f)(Arg...) const noexcept, const Extra &...extra) { | ||
| initialize([f](const Class *c, | ||
| Arg... args) -> Return { return (c->*f)(std::forward<Arg>(args)...); }, | ||
| (Return (*)(const Class *, Arg...)) nullptr, | ||
| extra...); | ||
| } | ||
|
|
||
| /// Construct a cpp_function from a class method (const, lvalue ref-qualifier, noexcept) | ||
| template <typename Return, typename Class, typename... Arg, typename... Extra> | ||
| // NOLINTNEXTLINE(google-explicit-constructor) | ||
| cpp_function(Return (Class::*f)(Arg...) const & noexcept, const Extra &...extra) { | ||
| initialize([f](const Class *c, | ||
| Arg... args) -> Return { return (c->*f)(std::forward<Arg>(args)...); }, | ||
| (Return (*)(const Class *, Arg...)) nullptr, | ||
| extra...); | ||
| } | ||
| #endif | ||
|
|
||
| /// Return the function name | ||
| object name() const { return attr("__name__"); } | ||
|
|
||
|
|
@@ -1905,6 +1947,61 @@ auto method_adaptor(Return (Class::*pmf)(Args...) const) -> Return (Derived::*)( | |
| return pmf; | ||
| } | ||
|
|
||
| template <typename Derived, typename Return, typename Class, typename... Args> | ||
| auto method_adaptor(Return (Class::*pmf)(Args...) &) -> Return (Derived::*)(Args...) & { | ||
| static_assert( | ||
| detail::is_accessible_base_of<Class, Derived>::value, | ||
| "Cannot bind an inaccessible base class method; use a lambda definition instead"); | ||
| return pmf; | ||
| } | ||
|
|
||
| template <typename Derived, typename Return, typename Class, typename... Args> | ||
| auto method_adaptor(Return (Class::*pmf)(Args...) const &) | ||
| -> Return (Derived::*)(Args...) const & { | ||
| static_assert( | ||
| detail::is_accessible_base_of<Class, Derived>::value, | ||
| "Cannot bind an inaccessible base class method; use a lambda definition instead"); | ||
| return pmf; | ||
| } | ||
|
|
||
| #ifdef __cpp_noexcept_function_type | ||
| template <typename Derived, typename Return, typename Class, typename... Args> | ||
| auto method_adaptor(Return (Class::*pmf)(Args...) noexcept) | ||
| -> Return (Derived::*)(Args...) noexcept { | ||
| static_assert( | ||
| detail::is_accessible_base_of<Class, Derived>::value, | ||
| "Cannot bind an inaccessible base class method; use a lambda definition instead"); | ||
| return pmf; | ||
| } | ||
|
|
||
| template <typename Derived, typename Return, typename Class, typename... Args> | ||
| auto method_adaptor(Return (Class::*pmf)(Args...) const noexcept) | ||
| -> Return (Derived::*)(Args...) const noexcept { | ||
| static_assert( | ||
| detail::is_accessible_base_of<Class, Derived>::value, | ||
| "Cannot bind an inaccessible base class method; use a lambda definition instead"); | ||
| return pmf; | ||
| } | ||
|
|
||
| template <typename Derived, typename Return, typename Class, typename... Args> | ||
| auto method_adaptor(Return (Class::*pmf)(Args...) & noexcept) | ||
| -> Return (Derived::*)(Args...) & noexcept { | ||
| static_assert( | ||
| detail::is_accessible_base_of<Class, Derived>::value, | ||
| "Cannot bind an inaccessible base class method; use a lambda definition instead"); | ||
| return pmf; | ||
| } | ||
|
|
||
| template <typename Derived, typename Return, typename Class, typename... Args> | ||
| auto method_adaptor(Return (Class::*pmf)(Args...) const & noexcept) | ||
| -> Return (Derived::*)(Args...) const & noexcept { | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I need to add tests for '&&' here i guess. Otherwise the fall through the perfect forwarding template... Sigh... I'll try construct some tests later I guess. |
||
| static_assert( | ||
| detail::is_accessible_base_of<Class, Derived>::value, | ||
| "Cannot bind an inaccessible base class method; use a lambda definition instead"); | ||
| return pmf; | ||
| } | ||
| #endif | ||
|
|
||
| PYBIND11_NAMESPACE_BEGIN(detail) | ||
|
|
||
| // Helper for the property_cpp_function static member functions below. | ||
|
|
@@ -2361,6 +2458,18 @@ class class_ : public detail::generic_type { | |
| return def_buffer([func](const type &obj) { return (obj.*func)(); }); | ||
| } | ||
|
|
||
| #ifdef __cpp_noexcept_function_type | ||
| template <typename Return, typename Class, typename... Args> | ||
| class_ &def_buffer(Return (Class::*func)(Args...) noexcept) { | ||
| return def_buffer([func](type &obj) { return (obj.*func)(); }); | ||
| } | ||
|
|
||
| template <typename Return, typename Class, typename... Args> | ||
| class_ &def_buffer(Return (Class::*func)(Args...) const noexcept) { | ||
| return def_buffer([func](const type &obj) { return (obj.*func)(); }); | ||
| } | ||
| #endif | ||
|
|
||
| template <typename C, typename D, typename... Extra> | ||
| class_ &def_readwrite(const char *name, D C::*pm, const Extra &...extra) { | ||
| static_assert(std::is_same<C, type>::value || std::is_base_of<C, type>::value, | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 able to massively simplify this with a macro...