From 355e56f5b2c4e1b97007fa21126d42eee61a3855 Mon Sep 17 00:00:00 2001 From: Tue Ly Date: Thu, 13 Jan 2022 14:34:17 -0500 Subject: [PATCH] [libc][trivial] Make LlvmLibcExhaustiveTest::check method purely virtual. --- libc/test/src/math/exhaustive/exhaustive_test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/test/src/math/exhaustive/exhaustive_test.h b/libc/test/src/math/exhaustive/exhaustive_test.h index 0782da7a203b..ca4f048b5748 100644 --- a/libc/test/src/math/exhaustive/exhaustive_test.h +++ b/libc/test/src/math/exhaustive/exhaustive_test.h @@ -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; };