I am trying to convert a Xcode project (link) to a VS2008 solution.
In a cuda filetype .cu, the term MAXFLOAT is used. I am adding the foll
.cu
MAXFLOAT
MAXFLOAT is a non-standard parameter. Use one of the following, portable alternatives:
In C: use the standard library FLT_MAX (defined in <float.h>).
FLT_MAX
In C++: use std::numeric_limits<float>::max (defined in <limits>). You may still use C's FLT_MAX, but include <cfloat> instead.
std::numeric_limits<float>::max