Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/src/arrow/util/ulp_distance.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct FloatToUInt<util::Float16> {
template <typename Float>
struct UlpDistanceUtil {
public:
using UIntType = FloatToUInt<Float>::Type;
using UIntType = typename FloatToUInt<Float>::Type;
Comment thread
pitrou marked this conversation as resolved.
static constexpr UIntType kNumberOfBits = sizeof(Float) * 8;
static constexpr UIntType kSignMask = static_cast<UIntType>(1) << (kNumberOfBits - 1);

Expand Down
Loading