changeset 511 | 06787db0ef5f |
parent 470 | 81627fa1b007 |
child 877 | 141f9c0db4a3 |
1.1 --- a/lemon/math.h Fri Feb 13 14:56:27 2009 +0000 1.2 +++ b/lemon/math.h Fri Feb 13 15:01:09 2009 +0000 1.3 @@ -60,7 +60,7 @@ 1.4 ///This function checks whether the parameter is NaN or not. 1.5 ///Is should be equivalent with std::isnan(), but it is not 1.6 ///provided by all compilers. 1.7 - inline bool isnan(double v) 1.8 + inline bool isNaN(double v) 1.9 { 1.10 return v!=v; 1.11 }