我使用这个命令来编译下面的代码:
g++ -ansi -pedantic -Wall -Wextra myfile.cpp
我想得到一个警告int64_t 被转换成 int。但是根本没有任何警告。我怎样才能做到这一点?
我的 g++ 版本是 4.6.1。
//file:myfile.cpp
#include <iostream>
using namespace std;
int main()
{
int64_t yy = 10;
int size = yy;
cout << size << endl;
}