Remove shadowing declaration of pi

This commit is contained in:
Chip Hogg
2022-08-11 15:56:10 +00:00
parent 327892a9b3
commit df290a74f0

View File

@@ -193,7 +193,6 @@ TEST_CASE("magnitude converts to numerical value")
SECTION("pi to the 1 supplies correct values")
{
constexpr auto pi = pi_to_the<1>();
check_same_type_and_value(get_value<float>(pi), std::numbers::pi_v<float>);
check_same_type_and_value(get_value<double>(pi), std::numbers::pi_v<double>);
check_same_type_and_value(get_value<long double>(pi), std::numbers::pi_v<long double>);