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

Lines Matching refs:isgreater

249     static_assert((std::is_same<decltype(isgreater((float)0, (float)0)), bool>::value), "");
250 static_assert((std::is_same<decltype(isgreater((float)0, (double)0)), bool>::value), "");
251 static_assert((std::is_same<decltype(isgreater((float)0, (long double)0)), bool>::value), "");
252 static_assert((std::is_same<decltype(isgreater((double)0, (float)0)), bool>::value), "");
253 static_assert((std::is_same<decltype(isgreater((double)0, (double)0)), bool>::value), "");
254 static_assert((std::is_same<decltype(isgreater((double)0, (long double)0)), bool>::value), "");
255 static_assert((std::is_same<decltype(isgreater((long double)0, (float)0)), bool>::value), "");
256 static_assert((std::is_same<decltype(isgreater((long double)0, (double)0)), bool>::value), "");
257 static_assert((std::is_same<decltype(isgreater((long double)0, (long double)0)), bool>::value), "");
258 assert(isgreater(-1.0, 0.F) == false);