Hi,
I've mostly only coded in stl c++ before despite using Visual studio
for a long time for C#. So this is a new one on me.
In stl c++ I could do the following
std::numeric_limits<float>::max()
and thus get the maximum value a float could hold on a machine. This
is a bit non-critical at the moment, as I can just SET the value since
I'm only developing for one platform, but here's my problem.
In VS2008, it sees that as an implementation of _max(int a, int b),
and won't compile.
I'm clearly missing something. I'm including <limits>, is there some
other include that I'm missing?