I have just started learning C++ for linux (using RedHat 7.0 / g++), and
going through some simple textbook examples, I found that the <limits>
library does not seem to exist (<climits> is there, and seems to work OK,
but that is a different kettle of fish), so expressions such as
std::numeric_limits<float>::max do not compile. Is this the case, and if
so, why?
Thanks in advance
Steve