| 2443 | |
| 2444 | template<typename T> |
| 2445 | static T* |
| 2446 | push(char* (&in)) { |
| 2447 | T *t = reinterpret_cast<T*>(in); |
| 2448 | in += sizeof(T); |
| 2449 | return t; |
| 2450 | } |
| 2451 | |
| 2452 | // Most of the logic is already extensively tested in the other encodeMsgs |
| 2453 | // tests, so this will only test the new bits of code for cpp17 |
nothing calls this directly
no outgoing calls
no test coverage detected