Fix T37987: MSVC 2013 has C99 headers and warns for out define hypot _hypot for good reason it seems

This commit is contained in:
Martijn Berger
2014-01-02 22:19:10 +01:00
parent d0c6f14c73
commit 1c8a12ee61
4 changed files with 12 additions and 5 deletions

View File

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