mirror of https://github.com/CGAL/cgal
Merge pull request #159 from lrineau/Triangulation-fix_issue_158-lrineau
dD Triangulation: Make non-template methods inline
This commit is contained in:
commit
74cfacf554
|
|
@ -121,12 +121,15 @@ protected:
|
|||
|
||||
// FUNCTIONS THAT ARE NOT MEMBER FUNCTIONS:
|
||||
|
||||
|
||||
inline
|
||||
std::istream &
|
||||
operator>>(std::istream & is, No_full_cell_data &)
|
||||
{
|
||||
return is;
|
||||
}
|
||||
|
||||
inline
|
||||
std::ostream &
|
||||
operator<<(std::ostream & os, const No_full_cell_data &)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -93,12 +93,14 @@ public:
|
|||
|
||||
// NON CLASS-MEMBER FUNCTIONS
|
||||
|
||||
inline
|
||||
std::istream &
|
||||
operator>>(std::istream & is, No_vertex_data &)
|
||||
{
|
||||
return is;
|
||||
}
|
||||
|
||||
inline
|
||||
std::ostream &
|
||||
operator<<(std::ostream & os, const No_vertex_data &)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue