| 3196 | { |
| 3197 | public: |
| 3198 | image_matrix() = default; |
| 3199 | |
| 3200 | image_matrix(const std::size_t width_, const std::size_t height_) : width(width_), height(height_), pixels(std::make_unique<T[]>(width_ * height_)) {} |
| 3201 |
nothing calls this directly
no outgoing calls
no test coverage detected