From d8af0c5a2306e3e2f129c29c2c23d428d3a25be0 Mon Sep 17 00:00:00 2001 From: redclusive Date: Thu, 15 Apr 2021 17:45:11 +0300 Subject: [PATCH] fix typo --- src/AggregateFunctions/Bfloat16Histogram.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AggregateFunctions/Bfloat16Histogram.h b/src/AggregateFunctions/Bfloat16Histogram.h index 8b056a1fbac..d29d809618c 100644 --- a/src/AggregateFunctions/Bfloat16Histogram.h +++ b/src/AggregateFunctions/Bfloat16Histogram.h @@ -142,7 +142,7 @@ private: return ext::bit_cast(static_cast(x)) >> 16; } - Float32 to_Float32(const bfloat & x) const + Float32 to_Float32(const bfloat16 & x) const { return ext::bit_cast(x << 16); }