From 95e80e3c7b3d3ba0e56ae4d8fdc75f80318fab6a Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Wed, 6 May 2020 18:14:01 +0900 Subject: [PATCH] remove warning of vc --- include/mcl/util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mcl/util.hpp b/include/mcl/util.hpp index b33b10c..0b5a729 100644 --- a/include/mcl/util.hpp +++ b/include/mcl/util.hpp @@ -286,7 +286,7 @@ void powGeneric(G& out, const G& x, const T *y, size_t n, const Mul& mul, const out = x; } for (int i = (int)n - 1; i >= 0; i--) { - T v = y[i]; + v = y[i]; for (int j = m - 2; j >= 0; j -= 2) { sqr(out, out); sqr(out, out);