(wrong list, you want [email protected]) On Mon, 14 Apr 2014, Yves Mocquard wrote:
When I use gcc or g++ , I like when the compilator detects bug, with a an
error of compliation or a warning.
see this code :
long long fct()
{
return 0x123456789;
}
int main()
{
int a = fct();
cerr << a << endl;
}
when I compil with : g++ -Wall fic.cpp
I think that there should be a warning.
-Wconversion -- Marc Glisse
