| 44 | }; |
| 45 | |
| 46 | inline _Rep_base* rep_from_data(const char* data_) noexcept { |
| 47 | char* data = const_cast<char*>(data_); |
| 48 | return reinterpret_cast<_Rep_base*>(data - sizeof(_Rep_base)); |
| 49 | } |
| 50 | |
| 51 | inline char* data_from_rep(_Rep_base* rep) noexcept { |
| 52 | char* data = reinterpret_cast<char*>(rep); |
no outgoing calls
no test coverage detected