浏览代码

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;


正在加载...
取消
保存