diff options
author | lloyd <[email protected]> | 2008-10-09 14:43:13 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-09 14:43:13 +0000 |
commit | dd9cb8b8c2de423c2eadf881548bcefffc63b9e6 (patch) | |
tree | ba9877b218ed3f16dcb1750691da4531e8826f79 | |
parent | 643df89a37dd0f8d9c090825166231db4fdaa55c (diff) |
Prevent unused warning if GF(p) math not compiled in
-rw-r--r-- | checks/gfpmath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/gfpmath.cpp b/checks/gfpmath.cpp index bf9ba6119..29384cecf 100644 --- a/checks/gfpmath.cpp +++ b/checks/gfpmath.cpp @@ -714,5 +714,5 @@ u32bit do_gfpmath_tests(Botan::RandomNumberGenerator& rng) return 0; } #else -u32bit do_gfpmath_tests(Botan::RandomNumberGenerator& rng) { return 0; } +u32bit do_gfpmath_tests(Botan::RandomNumberGenerator&) { return 0; } #endif |