| 739 | /// Alignment of the data type |
| 740 | #ifdef PYBIND11_NUMPY_1_ONLY |
| 741 | int alignment() const { return detail::array_descriptor_proxy(m_ptr)->alignment; } |
| 742 | #else |
| 743 | ssize_t alignment() const { |
| 744 | if (detail::npy_api::get().PyArray_RUNTIME_VERSION_ < 0x12) { |
nothing calls this directly
no test coverage detected