Merge branch 'dev' into spot-removal-tool

This commit is contained in:
Lawrence Lee
2021-05-15 22:57:06 -07:00
57 changed files with 4208 additions and 2488 deletions

View File

@@ -220,7 +220,7 @@ public:
#endif
return ptrs[row][col];
}
const T operator() (size_t row, size_t col) const
const T& operator() (size_t row, size_t col) const
{
#if CHECK_BOUNDS
assert (row < height_ && col < width_);
@@ -1310,7 +1310,7 @@ public:
#endif
return ptr[3 * (row * width + col)];
}
const T operator() (size_t row, size_t col) const
const T& operator() (size_t row, size_t col) const
{
#if CHECK_BOUNDS
assert (row < height_ && col < width_);