From 44b8725c034573acb819b667137568a335be070a Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 19 Jul 2003 05:16:49 +0000 Subject: fix 64-bit CPU issues git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@109 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- nbtheory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nbtheory.cpp') diff --git a/nbtheory.cpp b/nbtheory.cpp index 2a517d7..ee015a4 100644 --- a/nbtheory.cpp +++ b/nbtheory.cpp @@ -34,7 +34,7 @@ std::vector * NewPrimeTable() if (j == testEntriesEnd) { primeTable.push_back(p); - testEntriesEnd = STDMIN(54U, primeTable.size()); + testEntriesEnd = STDMIN((size_t)54U, primeTable.size()); } } -- cgit v1.2.1