I have some where in my code the next line: long long maxCPUTime=4294967296;
(the largest number long type can be is 4294967296 -1 , so I used long long)
the problem is, when I compile ,I get the next error:
error: integer constant is too large for ‘long’ type
Its as if, eclips doesn't recognize that I wrote 'long long' and it thinks I wrote 'long'.
(I'm using linux os)
anyone knows why I get this error?
int64_toruint64_tfor the type. – Mr Lister Jan 26 at 8:48