Skip to content

Commit a976036

Browse files
authored
[libc][NFC] Remove extra ; in exhaustive_test.h. (#124216)
These cause warnings when running check-libc.
1 parent 3da7de3 commit a976036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/test/src/math/exhaustive/exhaustive_test.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ struct LlvmLibcExhaustiveMathTest
225225
std::cout << "-- Testing for FE_TOWARDZERO in range [0x" << std::hex
226226
<< start << ", 0x" << stop << ") --" << std::dec << std::endl;
227227
test_full_range(mpfr::RoundingMode::TowardZero, start, stop);
228-
};
228+
}
229229

230230
void test_full_range_all_roundings(StorageType x_start, StorageType x_stop,
231231
StorageType y_start, StorageType y_stop) {
@@ -252,7 +252,7 @@ struct LlvmLibcExhaustiveMathTest
252252
<< ", 0x" << y_stop << ") --" << std::dec << std::endl;
253253
test_full_range(mpfr::RoundingMode::TowardZero, x_start, x_stop, y_start,
254254
y_stop);
255-
};
255+
}
256256
};
257257

258258
template <typename FloatType, mpfr::Operation Op, UnaryOp<FloatType> Func>

0 commit comments

Comments
 (0)