diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-17 15:46:48 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-17 15:46:48 +0000 |
commit | aff6d462c135b1acd597f06eff22b3adde3eca5f (patch) | |
tree | c07138ad018bb78eece4ed03338080d36364f31d /libstdc++-v3 | |
parent | 1d971bfdc4eea4c263d05a2522c821c003e3731b (diff) | |
download | ppe42-gcc-aff6d462c135b1acd597f06eff22b3adde3eca5f.tar.gz ppe42-gcc-aff6d462c135b1acd597f06eff22b3adde3eca5f.zip |
* include/std/std_limits.h (__glibcpp_float_has_quiet_NaN,
__glibcpp_double_has_quiet_NaN): Correct mispelling.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48955 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/std/std_limits.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ac32813280c..5e663eca6e7 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-01-17 Gabriel Dos Reis <gdr@merlin.codesourcery.com> + + * include/std/std_limits.h (__glibcpp_float_has_quiet_NaN, + __glibcpp_double_has_quiet_NaN): Correct mispelling. + 2002-01-17 Andreas Tobler <toa@pop.agri.ch> * config/os/solaris/solaris2.6/bits/ctype_noninline.h: Fix. diff --git a/libstdc++-v3/include/std/std_limits.h b/libstdc++-v3/include/std/std_limits.h index 7a6463625ae..fd7aeaf775e 100644 --- a/libstdc++-v3/include/std/std_limits.h +++ b/libstdc++-v3/include/std/std_limits.h @@ -598,7 +598,7 @@ #define __glibcpp_float_has_infinity false #endif -#ifndef __glibcpp_float_has_quiet_NaM +#ifndef __glibcpp_float_has_quiet_NaN #define __glibcpp_float_has_quiet_NaN false #endif @@ -702,7 +702,7 @@ #define __glibcpp_double_has_infinity false #endif -#ifndef __glibcpp_double_has_quiet_NaM +#ifndef __glibcpp_double_has_quiet_NaN #define __glibcpp_double_has_quiet_NaN false #endif |