Skip to content

Commit 1526598

Browse files
authored
Fix warning by removing unused local typedef (#27)
Fixes #25
1 parent 729919f commit 1526598

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

fixed/include/cpp-utilities/fixed.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ CONSTEXPR14 fixed<I, F> divide(fixed<I, F> numerator, fixed<I, F> denominator, f
147147
template <size_t I, size_t F>
148148
CONSTEXPR14 fixed<I, F> divide(fixed<I, F> numerator, fixed<I, F> denominator, fixed<I, F> &remainder, typename std::enable_if<!type_from_size<I + F>::next_size::is_specialized>::type * = nullptr) {
149149

150-
using base_type = typename fixed<I, F>::base_type;
151150
using unsigned_type = typename fixed<I, F>::unsigned_type;
152151

153152
constexpr int bits = fixed<I, F>::total_bits;

0 commit comments

Comments
 (0)