From db53db48e5ede4e478a8474676e2e0af269d2cda Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Sun, 12 Apr 2020 06:30:42 -0400 Subject: [PATCH] Corrected code. --- test/boost_has_int128.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/boost_has_int128.ipp b/test/boost_has_int128.ipp index c581acc6..abc10063 100644 --- a/test/boost_has_int128.ipp +++ b/test/boost_has_int128.ipp @@ -64,8 +64,8 @@ int test() return 1; } - my_uint128_t i(2), j(1), k; - k = i / j; + my_uint128_t ii(2), jj(1), kk; + kk = ii / jj; return 0; }