Code Cleanup: WIN32 defines, check for _MSC_VER instead of !FREE_WINDOWS

This commit is contained in:
Campbell Barton
2014-01-03 20:46:12 +11:00
parent f489e0c14c
commit a288644b1e
4 changed files with 15 additions and 15 deletions

View File

@@ -34,7 +34,7 @@
// conventional functions required by several matrix algorithms
#if (defined _WIN32) && (_MSC_VER < 1800)
#if defined(_MSC_VER) && (_MSC_VER < 1800)
#define hypot _hypot
#endif