aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/mul_div.cpp
diff options
context:
space:
mode:
authorInterchained <president@worldvaporexpo.com>2020-02-14 18:35:53 -0500
committerMark Evans <president@worldvaporexpo.com>2020-02-17 11:55:15 -0500
commitc61abf87c0aa4157824326ff80670ad3ccc9e470 (patch)
tree94196dde14352eb38b1f977c8af02c183b6d3ba7 /tests/unit_tests/mul_div.cpp
parentMerge pull request #6048 (diff)
downloadmonero-c61abf87c0aa4157824326ff80670ad3ccc9e470.tar.xz
remove empty statements
Cleaning up a little around the code base.
Diffstat (limited to '')
-rw-r--r--tests/unit_tests/mul_div.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/mul_div.cpp b/tests/unit_tests/mul_div.cpp
index e3f7c34f3..c1a72ce51 100644
--- a/tests/unit_tests/mul_div.cpp
+++ b/tests/unit_tests/mul_div.cpp
@@ -82,7 +82,7 @@ namespace
lo = mul128(0x1111111111111111, 0x1111111111111111, &hi);
ASSERT_EQ(lo, 0x0fedcba987654321);
- ASSERT_EQ(hi, 0x0123456789abcdf0);;
+ ASSERT_EQ(hi, 0x0123456789abcdf0);
}
TEST(mul128_with_carry_1_only, multiplies_correctly)