소스 검색

math: fix a bug in hex display of reals.

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

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

@@ -1628,7 +1628,7 @@ template<> std::string real::xstr() const
std::stringstream ss;
if (is_negative())
ss << '-';
ss << "0x1." << std::hex;
ss << "0x1." << std::hex << std::setfill('0');
for (int i = 0; i < bigit_count(); ++i)
ss << std::setw(8) << m_mantissa[i];
ss << std::dec;


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