From 716e0d6cce1ca55bcc276eb533cfe9627595741b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 20:41:05 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/cunumeric/unary/unary_red_template.inl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/cunumeric/unary/unary_red_template.inl b/src/cunumeric/unary/unary_red_template.inl index 1b92d5a32..aa038384f 100644 --- a/src/cunumeric/unary/unary_red_template.inl +++ b/src/cunumeric/unary/unary_red_template.inl @@ -51,11 +51,9 @@ struct UnaryRedImpl { auto lhs = args.lhs.reduce_accessor(rect); AccessorRO where; - if constexpr (HAS_WHERE) { - where = args.where.read_accessor(rect); - } + if constexpr (HAS_WHERE) { where = args.where.read_accessor(rect); } UnaryRedImplBody()( - lhs, rhs, where, rect, pitches, args.collapsed_dim, volume); + lhs, rhs, where, rect, pitches, args.collapsed_dim, volume); } template