Remove "unused argument" warnings.

This commit is contained in:
Sylvain Pion 2008-08-30 10:29:04 +00:00
parent 4045426593
commit 00d87d50fc
3 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ protected:
template <class K>
inline bool do_intersect(const typename K::Ray_2 &p1,
const typename K::Iso_rectangle_2 &p2,
const K& k)
const K&)
{
typedef Ray_2_Iso_rectangle_2_pair<K> pair_t;
pair_t pair(&p1, &p2);

View File

@ -64,7 +64,7 @@ template <class K>
inline bool do_intersect(
const typename K::Ray_2 &p1,
const typename K::Ray_2 &p2,
const K& k)
const K&)
{
typedef Ray_2_Ray_2_pair<K> pair_t;
pair_t pair(&p1, &p2);

View File

@ -61,7 +61,7 @@ protected:
template <class K>
inline bool do_intersect(const typename K::Ray_2 &p1,
const typename K::Segment_2 &p2,
const K& k)
const K&)
{
typedef Ray_2_Segment_2_pair<K> pair_t;
pair_t pair(&p1, &p2);