removed unused parameters

This commit is contained in:
Andreas Fabri 2007-03-17 09:48:47 +00:00
parent 632327f357
commit 68a24117bb
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ public:
};
struct Is_finite: public Unary_function<mpz_class,bool> {
template <typename T, typename U>
bool operator()( const ::__gmp_expr< T , U >& x) const {
bool operator()( const ::__gmp_expr< T , U >& ) const {
CGAL_CHECK_GMP_EXPR;
return true;
}