| 66 | }; |
| 67 | |
| 68 | explicit array(const context &context = system::default_context()) |
| 69 | : m_buffer(context, sizeof(T) * N) |
| 70 | { |
| 71 | } |
| 72 | |
| 73 | array(const array<T, N> &other) |
| 74 | : m_buffer(other.m_buffer.get_context(), sizeof(T) * N) |
nothing calls this directly
no test coverage detected