Skip to content

Commit ab3f64e

Browse files
committed
fix style format error
1 parent 9efb352 commit ab3f64e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/lite/micro/kernels/reduce_common.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ enum MinMaxEvalType { kEvalMin, kEvalMax };
120120
template <typename T>
121121
struct MinMaxReducerParams {
122122
MinMaxReducerParams() = delete;
123-
MinMaxReducerParams(MinMaxEvalType evalType) : type_(evalType) {};
123+
MinMaxReducerParams(MinMaxEvalType evalType) : type_(evalType){};
124124

125125
constexpr T initialValue() const {
126126
return (type_ == kEvalMin) ? std::numeric_limits<T>::max()

0 commit comments

Comments
 (0)