From 053aea0b9af4368b30f2ca81f2b2a9df347a5416 Mon Sep 17 00:00:00 2001 From: Shri Prakash Bajpai <68155959+Shri2206@users.noreply.github.com> Date: Thu, 29 Oct 2020 02:06:47 +0530 Subject: [PATCH] Update math/modular_exponentiation.cpp Co-authored-by: David Leal --- math/modular_exponentiation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/modular_exponentiation.cpp b/math/modular_exponentiation.cpp index 4ddec1b2a..0cd962bce 100644 --- a/math/modular_exponentiation.cpp +++ b/math/modular_exponentiation.cpp @@ -63,7 +63,7 @@ namespace math { */ static void test() { - int test_case_1 = math::power(2,5,13); + uint32_t test_case_1 = math::power(2,5,13); assert(test_case_1==6); std::cout<<"Test 1 Passed!"<