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 ).
FLT_MAX
In C++: use std::numeric_limits::max (defined in ). You may still use C's FLT_MAX, but include instead.
std::numeric_limits::max