| 519 | #if defined(PYBIND11_CPP17) |
| 520 | struct alignas(1024) Aligned { |
| 521 | std::uintptr_t ptr() const { return (uintptr_t) this; } |
| 522 | }; |
| 523 | py::class_<Aligned>(m, "Aligned").def(py::init<>()).def("ptr", &Aligned::ptr); |
| 524 | #endif |
no outgoing calls
no test coverage detected