Skip to content

Commit 7008416

Browse files
committed
fmt
1 parent 979e9c0 commit 7008416

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/test/src/complex/ConjTest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ class ConjTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
7171
EXPECT_CFP_EQ(func(CFPT(0.0 - 0.0i)), CFPT(0.0 + 0.0i));
7272
EXPECT_CFP_EQ(func(CFPT(0.0 + 0.0i)), CFPT(0.0 - 0.0i));
7373
// This test passes because the conjugate of -0.0 - 0.0i is CMPLX(-0.0, 0.0)
74-
// which cannot be represented as -0.0 + 0.0i because -0.0 + 0.0i is actually
75-
// CMPLX(-0.0, 0.0) + CMPLX(0.0, 0.0) = 0.0 + 0.0i so to represent
74+
// which cannot be represented as -0.0 + 0.0i because -0.0 + 0.0i is
75+
// actually CMPLX(-0.0, 0.0) + CMPLX(0.0, 0.0) = 0.0 + 0.0i so to represent
7676
// CMPLX(-0.0, 0.0), we use -0.0
7777
EXPECT_CFP_EQ(func(CFPT(-0.0 - 0.0i)), CFPT(-0.0));
7878
// This test passes because -0.0 + 0.0i is actually

0 commit comments

Comments
 (0)