| 253 | } |
| 254 | template <class T, typename... Values> |
| 255 | void track_values(T *, Values &&...values) { |
| 256 | ConstructorStats::get<T>().value(std::forward<Values>(values)...); |
| 257 | } |
| 258 | |
| 259 | /// Don't cast pointers to Python, print them as strings |
| 260 | inline const char *format_ptrs(const char *p) { return p; } |
no test coverage detected