#include <limits>
int main()
{
return 0;
}
I'm running gcc compiler on a unix system in this way:
g++ example.cpp
and the following error comes up:
limits: "No such file or directory"
The files which contain these statements belong to boost libraries.
It's grammatically OK, so i guess there is something wrong with the
system or compiler.
Am I using a non-standard compiler? As the code from third-party
libraries, how could I bypass this issue avoiding to change the
current source code?
Many thanks in advance.
#include <limits.h>
#include <math.h>
These are header files - for the libraries.
Gerard Gold