remove workaround now that our C++ header is fixed

This commit is contained in:
naddy 2009-01-28 19:23:56 +00:00
parent 35b27c7e02
commit 10d23cdd5b

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-include_cppunit_portability_FloatingPoint_h,v 1.1 2009/01/23 17:45:36 naddy Exp $
--- include/cppunit/portability/FloatingPoint.h.orig Fri Jan 23 10:39:55 2009
+++ include/cppunit/portability/FloatingPoint.h Fri Jan 23 10:40:08 2009
@@ -38,7 +38,7 @@ inline bool floatingPointIsUnordered( double x )
inline int floatingPointIsFinite( double x )
{
#if defined(CPPUNIT_HAVE_ISFINITE)
- return isfinite( x );
+ return std::isfinite( x );
#elif defined(CPPUNIT_HAVE_FINITE)
return finite( x );
#elif defined(CPPUNIT_HAVE__FINITE)