Skip to content

Commit

Permalink
Merge pull request #431 from jorisv/topic/add_std_variant
Browse files Browse the repository at this point in the history
Add `std::variant` support
  • Loading branch information
jorisv committed Jan 31, 2024
2 parents 61859c2 + a27795c commit b07b2c8
Show file tree
Hide file tree
Showing 13 changed files with 549 additions and 365 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Added
- Support for `Eigen::SparseMatrix` types ([#426](https://github.com/stack-of-tasks/eigenpy/pull/426))
- Support for `boost::variant` types with `BoostVariantConvertor` ([#430](https://github.com/stack-of-tasks/eigenpy/pull/430))
- Support for `boost::variant` types with `VariantConverter` ([#430](https://github.com/stack-of-tasks/eigenpy/pull/430))
- Support for `std::variant` types with `VariantConverter` ([#431](https://github.com/stack-of-tasks/eigenpy/pull/431))

### Fixed
- Fix the issue of missing exposition of Eigen types with __int64 scalar type ([#426](https://github.com/stack-of-tasks/eigenpy/pull/426))
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ set(${PROJECT_NAME}_HEADERS
include/eigenpy/sparse/eigen-from-python.hpp
include/eigenpy/scipy-allocator.hpp
include/eigenpy/scipy-type.hpp
include/eigenpy/variant.hpp
include/eigenpy/swig.hpp
include/eigenpy/version.hpp)

Expand Down
136 changes: 0 additions & 136 deletions include/eigenpy/boost-variant.hpp

This file was deleted.

Loading

0 comments on commit b07b2c8

Please sign in to comment.