-
Notifications
You must be signed in to change notification settings - Fork 40
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
Add std::variant
support
#431
Merged
Merged
Conversation
This file contains 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
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
ManifoldFR
reviewed
Jan 30, 2024
ManifoldFR
reviewed
Jan 30, 2024
ManifoldFR
previously approved these changes
Jan 30, 2024
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.
Looks good to me
ManifoldFR
previously approved these changes
Jan 30, 2024
ManifoldFR
approved these changes
Jan 31, 2024
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.
Joris told me it's all good so it must be good
nim65s
added a commit
to nim65s/robotpkg
that referenced
this pull request
Mar 12, 2024
Upstream changelog: ## [3.4.0] - 2024-02-26 ### Added - Support for `Eigen::SparseMatrix` types (stack-of-tasks/eigenpy#426) - Support for `boost::variant` types with `VariantConverter` (stack-of-tasks/eigenpy#430) - Support for `std::variant` types with `VariantConverter` (stack-of-tasks/eigenpy#431) - Support for `std::unique_ptr` as a return types with `StdUniquePtrCallPolicies` and `boost::python::default_call_policies` (stack-of-tasks/eigenpy#433) - Support for `std::unique_ptr` as an internal reference with `ReturnInternalStdUniquePtr` (stack-of-tasks/eigenpy#433) - Support for `Eigen::Simplicial{LLT,LDLT}` and `Eigen::Cholmod{Simplicial,Supernodal}{LLT,LDLT}` Cholesky de compositions (stack-of-tasks/eigenpy#438) - Switch to ruff for lints, format, and import sort (stack-of-tasks/eigenpy#441) ### Fixed - Fix the issue of missing exposition of Eigen types with __int64 scalar type (stack-of-tasks/eigenpy#426) - Fix namespace use in unittest/std_pair.cpp (stack-of-tasks/eigenpy#429) - Fix case of zero-size sparse matrices (stack-of-tasks/eigenpy#437) Packaging changes: - remove patch-aa, fixed upstream
nim65s
added a commit
to nim65s/robotpkg
that referenced
this pull request
Mar 29, 2024
Upstream changelog: ## [3.4.0] - 2024-02-26 ### Added - Support for `Eigen::SparseMatrix` types (stack-of-tasks/eigenpy#426) - Support for `boost::variant` types with `VariantConverter` (stack-of-tasks/eigenpy#430) - Support for `std::variant` types with `VariantConverter` (stack-of-tasks/eigenpy#431) - Support for `std::unique_ptr` as a return types with `StdUniquePtrCallPolicies` and `boost::python::default_call_policies` (stack-of-tasks/eigenpy#433) - Support for `std::unique_ptr` as an internal reference with `ReturnInternalStdUniquePtr` (stack-of-tasks/eigenpy#433) - Support for `Eigen::Simplicial{LLT,LDLT}` and `Eigen::Cholmod{Simplicial,Supernodal}{LLT,LDLT}` Cholesky de compositions (stack-of-tasks/eigenpy#438) - Switch to ruff for lints, format, and import sort (stack-of-tasks/eigenpy#441) ### Fixed - Fix the issue of missing exposition of Eigen types with __int64 scalar type (stack-of-tasks/eigenpy#426) - Fix namespace use in unittest/std_pair.cpp (stack-of-tasks/eigenpy#429) - Fix case of zero-size sparse matrices (stack-of-tasks/eigenpy#437) Packaging changes: - remove patch-aa, fixed upstream
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 is still some unsupported type : like char
Close #419