From ba8621ec68e525843eb5d92078f2a1bd6999f20a Mon Sep 17 00:00:00 2001 From: zhli1142015 Date: Tue, 2 Jul 2024 15:39:37 +0800 Subject: [PATCH] fix style --- velox/functions/lib/aggregates/MinMaxAggregateBase.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/velox/functions/lib/aggregates/MinMaxAggregateBase.cpp b/velox/functions/lib/aggregates/MinMaxAggregateBase.cpp index d73b4b40b10f8..474ca02e7a73b 100644 --- a/velox/functions/lib/aggregates/MinMaxAggregateBase.cpp +++ b/velox/functions/lib/aggregates/MinMaxAggregateBase.cpp @@ -182,12 +182,12 @@ const T MaxAggregate::kInitialValue_ = MinMaxTrait::lowest(); // Negative INF is the smallest value of floating point type. template <> -const float MaxAggregate::kInitialValue_ = -1 * - MinMaxTrait::infinity(); +const float MaxAggregate::kInitialValue_ = + -1 * MinMaxTrait::infinity(); template <> -const double MaxAggregate::kInitialValue_ = -1 * - MinMaxTrait::infinity(); +const double MaxAggregate::kInitialValue_ = + -1 * MinMaxTrait::infinity(); template class MinAggregate : public MinMaxAggregate {