mirror of https://github.com/CGAL/cgal
Comment unused argument name to remove warning.
This commit is contained in:
parent
e46f8e0740
commit
cd30eea74c
|
|
@ -301,7 +301,7 @@ operator<<(std::ostream& os, const Gmpq &z)
|
||||||
|
|
||||||
namespace Gmpq_detail {
|
namespace Gmpq_detail {
|
||||||
inline
|
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;
|
std::istream::char_type cc= c;
|
||||||
return
|
return
|
||||||
|
|
@ -315,13 +315,13 @@ namespace Gmpq_detail {
|
||||||
}
|
}
|
||||||
|
|
||||||
inline
|
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();
|
return c == std::istream::traits_type::eof();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline
|
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;
|
std::istream::char_type cc= c;
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue