From d5ebf62bed594d1fe6ab616a6bbcbcf0a5892d47 Mon Sep 17 00:00:00 2001 From: weidai Date: Tue, 12 Jul 2005 04:23:32 +0000 Subject: port to MSVC .NET 2005 beta 2 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@198 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- algebra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'algebra.cpp') diff --git a/algebra.cpp b/algebra.cpp index 6b20bf4..59ff2de 100644 --- a/algebra.cpp +++ b/algebra.cpp @@ -303,7 +303,7 @@ void AbstractGroup::SimultaneousMultiply(T *results, const T &base, const Int r = buckets[i][buckets[i].size()-1]; if (buckets[i].size() > 1) { - for (int j = buckets[i].size()-2; j >= 1; j--) + for (int j = (int)buckets[i].size()-2; j >= 1; j--) { Accumulate(buckets[i][j], buckets[i][j+1]); Accumulate(r, buckets[i][j]); -- cgit v1.2.1