remove factories and change to size_t

This commit is contained in:
Bechir Braham
2024-04-10 13:34:31 +02:00
parent ea17a640cf
commit bfb59d650b
19 changed files with 302 additions and 342 deletions

View File

@ -31,6 +31,8 @@ typedef struct {
struct xy {
int row;
int col;
bool operator==(const xy &other) const { return row == other.row && col == other.col; }
bool operator!=(const xy &other) const { return !(*this == other); }
};
// using image_shape = std::array<ssize_t, 2>;