64位Fedora运行32位C++程序中int精度溢出处理

 

在64-bit机器中编译32-bit的代码出现int(强制转换而至)精度溢出:

Debug==>

  
  
  
  
  1. error: cast from ‘void*’ to ‘int’ loses precision 

Solution==>

int -->intptr_t

Reference:

http://stackoverflow.com/questions/2024895/how-should-i-handle-cast-from-void-to-int-loses-precision-when-compiling-3

本文出自 “Turtle” 博客,转载请与作者联系!

你可能感兴趣的:(职场,休闲,int精度溢出)