From 652e7188536dc25af096a93dd805551dd0cf2b84 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sun, 5 Apr 2026 22:10:45 +0200 Subject: [PATCH] Fix usage of make_unsigned --- include/etl/rounded_integral_division.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/rounded_integral_division.h b/include/etl/rounded_integral_division.h index 3b31a88d..26ae700c 100644 --- a/include/etl/rounded_integral_division.h +++ b/include/etl/rounded_integral_division.h @@ -567,7 +567,7 @@ namespace etl // Work with magnitudes in unsigned form (avoids abs() overflow for // T::min()). - typedef typename std::make_unsigned::type utype; + typedef typename etl::make_unsigned::type utype; const utype abs_denominator = (denominator < 0) ? (utype(0) - utype(denominator)) : utype(denominator); const utype abs_remainder = (remainder < 0) ? (utype(0) - utype(remainder)) : utype(remainder); const utype half_denominator = abs_denominator / 2U;