[libc][trivial] Make LlvmLibcExhaustiveTest::check method purely virtual.

This commit is contained in:
Tue Ly 2022-01-13 14:34:17 -05:00
parent e7b07a6538
commit 355e56f5b2

View File

@ -22,5 +22,5 @@ struct LlvmLibcExhaustiveTest : public __llvm_libc::testing::Test {
void test_full_range(T start, T stop, int nthreads,
mpfr::RoundingMode rounding);
virtual void check(T start, T stop, mpfr::RoundingMode rounding);
virtual void check(T start, T stop, mpfr::RoundingMode rounding) = 0;
};