From 98da8823d1b29d3562e58436698711e3e81eab63 Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Tue, 30 Jun 2026 08:58:21 +0100 Subject: [PATCH] Add typename --- cpp/src/arrow/util/ulp_distance.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/util/ulp_distance.cc b/cpp/src/arrow/util/ulp_distance.cc index cbc6e92090bf..912de62f987e 100644 --- a/cpp/src/arrow/util/ulp_distance.cc +++ b/cpp/src/arrow/util/ulp_distance.cc @@ -50,7 +50,7 @@ struct FloatToUInt { template struct UlpDistanceUtil { public: - using UIntType = FloatToUInt::Type; + using UIntType = typename FloatToUInt::Type; static constexpr UIntType kNumberOfBits = sizeof(Float) * 8; static constexpr UIntType kSignMask = static_cast(1) << (kNumberOfBits - 1);