From 0d064ef75d3e979dea6bf3607381de0a3d3fc0cf Mon Sep 17 00:00:00 2001 From: Pharap <2933055+Pharap@users.noreply.github.com> Date: Mon, 28 May 2018 13:30:18 +0100 Subject: [PATCH] Fix bug in definition of UFixedBase::IntegerType (#39) --- src/FixedPoints/UFixedBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FixedPoints/UFixedBase.h b/src/FixedPoints/UFixedBase.h index 1dfd4a0..74fb725 100644 --- a/src/FixedPoints/UFixedBase.h +++ b/src/FixedPoints/UFixedBase.h @@ -23,7 +23,7 @@ namespace FIXED_POINTS_DETAILS class UFixedBase { public: - using IntegerType = FIXED_POINTS_DETAILS::LeastInt; + using IntegerType = FIXED_POINTS_DETAILS::LeastUInt; using FractionType = FIXED_POINTS_DETAILS::LeastUInt; using InternalType = FIXED_POINTS_DETAILS::LeastUInt;