diff --git a/test/compare/fpclassify_test.cpp b/test/compare/fpclassify_test.cpp index b30ab8a..aa67ba0 100644 --- a/test/compare/fpclassify_test.cpp +++ b/test/compare/fpclassify_test.cpp @@ -16,7 +16,7 @@ TEST(CcmathCompareTests, Fpclassify) { // Test that fpclassify is static_assert-able // TODO: Having issues with static_assert for fpclassify on windows and macos - //static_assert(ccm::fpclassify(1.0) == std::fpclassify(1.0), "fpclassify has failed testing that it is static_assert-able!"); + static_assert(ccm::fpclassify(1.0) == std::fpclassify(1.0), "fpclassify has failed testing that it is static_assert-able!"); EXPECT_EQ(ccm::fpclassify(1.0), std::fpclassify(1.0)); EXPECT_EQ(ccm::fpclassify(0.0), std::fpclassify(0.0));