Fix a typo.

[SVN r35500]
This commit is contained in:
Daniel James
2006-10-05 21:21:43 +00:00
parent 869a303733
commit 3732ea7566

View File

@@ -40,7 +40,7 @@
// other BSDs, but using the macros if they're available seems like the best // other BSDs, but using the macros if they're available seems like the best
// choice. // choice.
#if defined(__FreeBSD__) || defined(__NetBSD__) && \ #if defined(__FreeBSD__) || defined(__NetBSD__) || \
defined(__OpenBSD__) || defined(__DragonFly__) defined(__OpenBSD__) || defined(__DragonFly__)
#include <float.h> #include <float.h>
#endif #endif
@@ -52,7 +52,7 @@ namespace boost
template <class T> template <class T>
struct float_limits : std::numeric_limits<T> {}; struct float_limits : std::numeric_limits<T> {};
#if defined(__FreeBSD__) || defined(__NetBSD__) && \ #if defined(__FreeBSD__) || defined(__NetBSD__) || \
defined(__OpenBSD__) || defined(__DragonFly__) defined(__OpenBSD__) || defined(__DragonFly__)
template <> template <>
struct float_limits<long double> struct float_limits<long double>