| 80 | namespace { |
| 81 | |
| 82 | template <class T, class U> void assign(T& x, const U& y) { x = y; } |
| 83 | void assign(uuid& x, const pn_uuid_t y) { byte_copy(x, y); } |
| 84 | void assign(decimal32& x, const pn_decimal32_t y) { byte_copy(x, y); } |
| 85 | void assign(decimal64& x, const pn_decimal64_t y) { byte_copy(x, y); } |
no test coverage detected