mirror of https://github.com/CGAL/cgal
Remove "unused argument" warnings.
This commit is contained in:
parent
4045426593
commit
00d87d50fc
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue