소스 검색

Fix a bug in the real * int op that prevented an optimisation.

legacy
Sam Hocevar 7 년 전
부모
커밋
d5c665e27e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/lol/math/real.h

+ 1
- 1
src/lol/math/real.h 파일 보기

@@ -157,7 +157,7 @@ public:
inline Real<T> const &operator op##=(type x) \
{ \
/* If multiplying or dividing by a power of two, take a shortcut */ \
if (m_sign && m_exponent && x && !(x & (x - 1))) \
if (!is_zero() && x && !(x & (x - 1))) \
{ \
while (x >>= 1) \
m_exponent += 1 op 2 - 1; /* 1 if op is *, -1 if op is / */ \


불러오는 중...
취소
저장