Comment unused argument name to remove warning.

This commit is contained in:
Sylvain Pion 2007-02-14 13:23:44 +00:00
parent e46f8e0740
commit cd30eea74c
1 changed files with 3 additions and 3 deletions

View File

@ -301,7 +301,7 @@ operator<<(std::ostream& os, const Gmpq &z)
namespace Gmpq_detail {
inline
bool is_space (const std::istream& is, std::istream::int_type c)
bool is_space (const std::istream& /*is*/, std::istream::int_type c)
{
std::istream::char_type cc= c;
return
@ -315,13 +315,13 @@ namespace Gmpq_detail {
}
inline
bool is_eof (const std::istream& is, std::istream::int_type c)
bool is_eof (const std::istream& /*is*/, std::istream::int_type c)
{
return c == std::istream::traits_type::eof();
}
inline
bool is_digit (const std::istream& is, std::istream::int_type c)
bool is_digit (const std::istream& /*is*/, std::istream::int_type c)
{
std::istream::char_type cc= c;
return