diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2001-12-18 06:57:28 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2001-12-18 06:57:28 +0000 |
commit | 8d33a04d8b07d3c678027771ff9ab28e4a366e88 (patch) | |
tree | 5b481af9a94e4ac956e9fa0bae9986cf49c967aa | |
parent | 40aba207b103ab0649b6e0e1c473cddcb18d46b2 (diff) | |
download | gcc-8d33a04d8b07d3c678027771ff9ab28e4a366e88.zip gcc-8d33a04d8b07d3c678027771ff9ab28e4a366e88.tar.gz gcc-8d33a04d8b07d3c678027771ff9ab28e4a366e88.tar.bz2 |
std_limits.h (__glibcpp_long_double_is_bounded): Set to true, like float and double.
2001-12-17 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/std_limits.h (__glibcpp_long_double_is_bounded):
Set to true, like float and double.
From-SVN: r48145
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/std_limits.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 71b14da..7de1b08 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-12-17 Benjamin Kosnik <bkoz@redhat.com> + + * include/bits/std_limits.h (__glibcpp_long_double_is_bounded): + Set to true, like float and double. + 2001-12-17 David Billinghurst <David.Billinghurst@riotinto.com> libstdc++/5136 diff --git a/libstdc++-v3/include/bits/std_limits.h b/libstdc++-v3/include/bits/std_limits.h index dd69401..b242437 100644 --- a/libstdc++-v3/include/bits/std_limits.h +++ b/libstdc++-v3/include/bits/std_limits.h @@ -846,7 +846,7 @@ #endif #ifndef __glibcpp_long_double_is_bounded -#define __glibcpp_long_double_is_bounded false +#define __glibcpp_long_double_is_bounded true #endif #ifndef __glibcpp_long_double_is_modulo |