Rename for clarity
Build on RHEL8 / build (push) Successful in 2m23s
Build on RHEL9 / build (push) Successful in 2m39s
Run tests using data on local RHEL8 / build (push) Failing after 3m7s

This commit is contained in:
2026-02-25 17:29:37 +01:00
parent e31c8582e4
commit fba4aa77c6
+2 -2
View File
@@ -38,11 +38,11 @@ struct InclusiveROI {
// static InclusiveROI from_shape(ssize_t width, ssize_t height);
};
inline InclusiveROI toInclusiveROI(aare::ROI const &r) {
inline InclusiveROI toInclusiveROI(ROI const &r) {
return {r.xmin, r.xmax - 1, r.ymin, r.ymax - 1};
};
inline aare::ROI toAareROI(InclusiveROI const& r) {
inline ROI toHalfopenROI(InclusiveROI const& r) {
return {r.xmin, r.xmax + 1, r.ymin, r.ymax + 1};
}