Skip to content
Snippets Groups Projects
Commit 7e7e7f2a authored by Romain Garrigues's avatar Romain Garrigues
Browse files

Correction erreur de compilation cygwin

parent fd63e1f3
Branches
Tags
No related merge requests found
......@@ -58,7 +58,7 @@ namespace ossim
*
* @see nan()
*/
#if defined(WIN32) || defined(_MSC_VER) && !defined(__CYGWIN__) && !defined(__MWERKS__)
#if (defined(WIN32) || defined(_MSC_VER)) && !defined(__CYGWIN__) && !defined(__MWERKS__)
inline bool isnan(const float& v) { return _isnan(v); }
inline bool isnan(const double& v) {return _isnan(v); }
#elif defined(sun) || defined(__sun)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment