[libc][trivial] Make LlvmLibcExhaustiveTest::check method purely virtual.
authorTue Ly <lntue@google.com>
Thu, 13 Jan 2022 19:34:17 +0000 (14:34 -0500)
committerTue Ly <lntue@google.com>
Thu, 13 Jan 2022 19:35:11 +0000 (14:35 -0500)
libc/test/src/math/exhaustive/exhaustive_test.h

index 0782da7..ca4f048 100644 (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;
 };