File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ function(_get_common_test_compile_options output_var c_test flags)
35
35
# list(APPEND compile_options "-Wno-sign-conversion")
36
36
# list(APPEND compile_options "-Wimplicit-fallthrough")
37
37
# list(APPEND compile_options "-Wwrite-strings")
38
- # list(APPEND compile_options "-Wextra-semi")
38
+ list (APPEND compile_options "-Wextra-semi" )
39
39
# Silence this warning because _Complex is a part of C99.
40
40
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
41
41
if (NOT c_test )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class LlvmLibcNanTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
23
23
auto actual_fp = LIBC_NAMESPACE::fputil::FPBits<double >(result);
24
24
auto expected_fp = LIBC_NAMESPACE::fputil::FPBits<double >(bits);
25
25
EXPECT_EQ (actual_fp.uintval (), expected_fp.uintval ());
26
- };
26
+ }
27
27
};
28
28
29
29
TEST_F (LlvmLibcNanTest, NCharSeq) {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class LlvmLibcNanf128Test : public LIBC_NAMESPACE::testing::FEnvSafeTest {
28
28
auto actual_fp = FPBits128 (result);
29
29
auto expected_fp = FPBits128 (bits);
30
30
EXPECT_EQ (actual_fp.uintval (), expected_fp.uintval ());
31
- };
31
+ }
32
32
};
33
33
34
34
TEST_F (LlvmLibcNanf128Test, NCharSeq) {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class LlvmLibcNanf16Test : public LIBC_NAMESPACE::testing::FEnvSafeTest {
23
23
auto actual_fp = LIBC_NAMESPACE::fputil::FPBits<float16>(result);
24
24
auto expected_fp = LIBC_NAMESPACE::fputil::FPBits<float16>(bits);
25
25
EXPECT_EQ (actual_fp.uintval (), expected_fp.uintval ());
26
- };
26
+ }
27
27
};
28
28
29
29
TEST_F (LlvmLibcNanf16Test, NCharSeq) {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class LlvmLibcNanfTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
23
23
auto actual_fp = LIBC_NAMESPACE::fputil::FPBits<float >(result);
24
24
auto expected_fp = LIBC_NAMESPACE::fputil::FPBits<float >(bits);
25
25
EXPECT_EQ (actual_fp.uintval (), expected_fp.uintval ());
26
- };
26
+ }
27
27
};
28
28
29
29
TEST_F (LlvmLibcNanfTest, NCharSeq) {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class LlvmLibcNanlTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
33
33
auto actual_fp = LIBC_NAMESPACE::fputil::FPBits<long double >(result);
34
34
auto expected_fp = LIBC_NAMESPACE::fputil::FPBits<long double >(bits);
35
35
EXPECT_EQ (actual_fp.uintval (), expected_fp.uintval ());
36
- };
36
+ }
37
37
};
38
38
39
39
TEST_F (LlvmLibcNanlTest, NCharSeq) {
You can’t perform that action at this time.
0 commit comments