| 65 | |
| 66 | private: |
| 67 | static detail::native_enum_record make_record() { |
| 68 | detail::native_enum_record ret; |
| 69 | ret.cpptype = &typeid(EnumType); |
| 70 | ret.size_bytes = sizeof(EnumType); |
| 71 | ret.is_signed = std::is_signed<Underlying>::value; |
| 72 | return ret; |
| 73 | } |
| 74 | }; |
| 75 | |
| 76 | PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE) |
nothing calls this directly
no outgoing calls
no test coverage detected