Skip to content

Commit 409dae2

Browse files
author
John Wellbelove
committed
Fix unused variable warnings
1 parent a5f0cfe commit 409dae2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/test_scaled_rounding.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1824,6 +1824,15 @@ namespace
18241824
std::array<char, round_infinity> g{};
18251825
std::array<char, round_zero> h{};
18261826

1827+
(void)a;
1828+
(void)b;
1829+
(void)c;
1830+
(void)d;
1831+
(void)e;
1832+
(void)f;
1833+
(void)g;
1834+
(void)h;
1835+
18271836
CHECK_EQUAL(10, round_ceiling);
18281837
CHECK_EQUAL(10, round_floor);
18291838
CHECK_EQUAL(10, round_half_down_scaled);

0 commit comments

Comments
 (0)