如何让gcc(6.3)警告通过强制转换(C代码)完成的所有显式 64位到32位转换?
e.g。 如何自动找到此类问题?
typedef long long my_type;
int foo()
{
my_type f;
...
return (int)f;
}
struct stat {
ino_t st_ino; /* 64bit Inode number */
... };
int foo2(){
stat s;
...
return (int)s.st_ino;
{