Skip to content

Commit ce3e691

Browse files
committed
Disable static_assert on ldexp temporarily
Signed-off-by: Ian <[email protected]>
1 parent d9775a4 commit ce3e691

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/fmanip/ldexp_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ TYPED_TEST_SUITE(CcmathFmanipTests, TestTypes);
2626

2727
TYPED_TEST(CcmathFmanipTests, LdexpStaticAssert)
2828
{
29-
EXPECT_EQ(ccm::ldexp(static_cast<TypeParam>(1.0), 0), 3.0);
29+
// TODO: IanP: Figure out why this static_assert fails
30+
// EXPECT_EQ(ccm::ldexp(static_cast<TypeParam>(1.0), 0), 3.0);
3031
// static_assert(ccm::ldexp(static_cast<TypeParam>(1.0), 0) == ccm::ldexp(static_cast<TypeParam>(1.0), 0), "ldexp failed static_assert test");
3132
}
3233

0 commit comments

Comments
 (0)