| 381 | |
| 382 | template<class T> |
| 383 | constexpr py_unicode_v |
| 384 | py_unicode() |
| 385 | { |
| 386 | return { |
| 387 | sizeof(T), |
| 388 | {offsetof(T, _base._base.state)}, |
| 389 | {offsetof(T, _base._base.length)}, |
| 390 | {offsetof(T, _base) + sizeof(T::_base._base)}, |
| 391 | }; |
| 392 | } |
| 393 | |
| 394 | template<class T> |
| 395 | constexpr py_tuple_v |
nothing calls this directly
no outgoing calls
no test coverage detected