Home | History | Annotate | Download | only in depr.c.headers

Lines Matching refs:isnormal

58 Ambiguous isnormal(Ambiguous){ return Ambiguous(); }
582 #ifdef isnormal
583 #error isnormal defined
585 static_assert((std::is_same<decltype(isnormal((float)0)), bool>::value), "");
586 static_assert((std::is_same<decltype(isnormal((double)0)), bool>::value), "");
587 static_assert((std::is_same<decltype(isnormal(0)), bool>::value), "");
588 static_assert((std::is_same<decltype(isnormal((long double)0)), bool>::value), "");
589 static_assert((std::is_same<decltype(isnormal(Ambiguous())), Ambiguous>::value), "");
590 assert(isnormal(-1.0) == true);