소스 검색

test: add a fallback for isnan() when not defined by the system includes.

legacy
Sam Hocevar sam 13 년 전
부모
커밋
0bbd1e43c2
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. +8
    -0
      test/half.cpp

+ 8
- 0
test/half.cpp 파일 보기

@@ -17,8 +17,16 @@
#include <cppunit/TestCase.h>
#include <cppunit/TestSuite.h>

#include <cmath>

#include "core.h"

/* This will not work with aggressive optimisation, but a reasonable
* assumption is that such environments do have a proper isnan(). */
#if !defined isnan
# define isnan(x) (!((x) == (x)))
#endif

namespace lol
{



불러오는 중...
취소
저장