Chromium Code Reviews| Index: src/mesa/main/querymatrix.c |
| =================================================================== |
| --- src/mesa/main/querymatrix.c (revision 229946) |
| +++ src/mesa/main/querymatrix.c (working copy) |
| @@ -37,6 +37,7 @@ |
| #define FLOAT_TO_FIXED(x) ((GLfixed) ((x) * 65536.0)) |
| #if defined(_MSC_VER) |
| +#if _MSC_VER < 1800 // Not required on VS2013 and above. |
|
marcheu
2013/10/21 23:20:18
Please use C-style /* ... */ comments, there are o
scottmg
2013/10/21 23:23:24
Done.
|
| /* Oddly, the fpclassify() function doesn't exist in such a form |
| * on MSVC. This is an implementation using slightly different |
| * lower-level Windows functions. |
| @@ -69,6 +70,7 @@ |
| return FP_NAN; |
| } |
| } |
| +#endif // _MSC_VER < 1800 |
| #elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \ |
| defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \ |