remove duplicate feature from list (#1476)

This commit is contained in:
Jeff VanOss 2018-09-11 04:39:17 -04:00 committed by Wenzel Jakob
parent 44e39e0de7
commit 01839dce8d
2 changed files with 0 additions and 2 deletions

View File

@ -51,7 +51,6 @@ pybind11 can map the following core C++ features to Python
- Custom operators - Custom operators
- Single and multiple inheritance - Single and multiple inheritance
- STL data structures - STL data structures
- Iterators and ranges
- Smart pointers with reference counting like ``std::shared_ptr`` - Smart pointers with reference counting like ``std::shared_ptr``
- Internal references with correct reference counting - Internal references with correct reference counting
- C++ classes with virtual (and pure virtual) methods can be extended in Python - C++ classes with virtual (and pure virtual) methods can be extended in Python

View File

@ -41,7 +41,6 @@ The following core C++ features can be mapped to Python
- Custom operators - Custom operators
- Single and multiple inheritance - Single and multiple inheritance
- STL data structures - STL data structures
- Iterators and ranges
- Smart pointers with reference counting like ``std::shared_ptr`` - Smart pointers with reference counting like ``std::shared_ptr``
- Internal references with correct reference counting - Internal references with correct reference counting
- C++ classes with virtual (and pure virtual) methods can be extended in Python - C++ classes with virtual (and pure virtual) methods can be extended in Python