summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoberto Bagnara <bagnara@cs.unipr.it>2012-03-26 10:39:05 +0200
committerRoberto Bagnara <bagnara@cs.unipr.it>2012-03-26 10:39:05 +0200
commit30c55629fd03c729ee85c34a21206f986590d7f2 (patch)
tree37f545845c9b99fc15cde7f0c2676313e691f658 /tests
parent59bbf2ad8eeaaa4506c572785f178fd7fdbd9826 (diff)
downloadppl-30c55629fd03c729ee85c34a21206f986590d7f2.tar.gz
ppl-30c55629fd03c729ee85c34a21206f986590d7f2.tar.bz2
ppl-30c55629fd03c729ee85c34a21206f986590d7f2.zip
Removed unused parameter name.
Diffstat (limited to 'tests')
-rw-r--r--tests/Random_Number_Generator.inlines.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Random_Number_Generator.inlines.hh b/tests/Random_Number_Generator.inlines.hh
index ce33d3aec..89f8513da 100644
--- a/tests/Random_Number_Generator.inlines.hh
+++ b/tests/Random_Number_Generator.inlines.hh
@@ -73,9 +73,8 @@ Random_Number_Generator::Random_Number_Generator(const unsigned long seed)
template <typename T>
inline void
-Random_Number_Generator::get(T& x, unsigned int info) {
+Random_Number_Generator::get(T& x, unsigned int) {
using Implementation::Random_Numbers::Random_Number_Generator_Aux;
- used(info);
static Random_Number_Generator_Aux<T> aux(max_bits);
mpz_class n;
if (std::numeric_limits<T>::is_bounded) {