mirror of https://github.com/CGAL/cgal
overload function for const-correctness (discovered by Intel compiler)
This commit is contained in:
parent
2db81b6688
commit
f130489709
|
|
@ -269,6 +269,11 @@ private:
|
||||||
{
|
{
|
||||||
return (reinterpret_cast<Sweep_line*>(m_sweep_line));
|
return (reinterpret_cast<Sweep_line*>(m_sweep_line));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const Sweep_line* _sweep_line () const
|
||||||
|
{
|
||||||
|
return (reinterpret_cast<const Sweep_line*>(m_sweep_line));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
CGAL_END_NAMESPACE
|
CGAL_END_NAMESPACE
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue