Browse Source

Fix spacing

pull/1/head
Clanmaster21 GitHub 4 years ago
parent
commit
0261bb0774
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      include/lol/private/types/real.ipp

+ 1
- 1
include/lol/private/types/real.ipp View File

@@ -590,7 +590,7 @@ template<typename T> real_t<T> real_t<T>::operator *(real_t<T> const &x) const
{
prev = carry;
carry += (uint64_t)m_mantissa[bigit_count() - 1 - j]
*(uint64_t)x.m_mantissa[j - 1 - i];
* (uint64_t)x.m_mantissa[j - 1 - i];
hicarry += (carry<prev);
}
prev = carry;


Loading…
Cancel
Save