| 462 | |
| 463 | template<class T> |
| 464 | constexpr py_float_v |
| 465 | py_float() |
| 466 | { |
| 467 | return { |
| 468 | sizeof(T), |
| 469 | {offsetof(T, ob_fval)}, |
| 470 | }; |
| 471 | } |
| 472 | |
| 473 | template<class T> |
| 474 | constexpr py_long_v |
nothing calls this directly
no outgoing calls
no test coverage detected