| 34 | #if 0 |
| 35 | template< int N > |
| 36 | std::string create_data( uint8_t (&bytes)[N]) |
| 37 | { |
| 38 | std::string data; |
| 39 | |
| 40 | for ( int i = 0; i < N; ++i ) |
| 41 | data.append(1, bytes[i]); |
| 42 | |
| 43 | return data; |
| 44 | } |
| 45 | #endif |
| 46 | |
| 47 | template< typename T > |
no test coverage detected