mirror of https://github.com/CGAL/cgal
Merge pull request #4023 from lrineau/Mesh_3-remove_old_code-GF
Mesh_3: remove the attempt for `os << std::pair`
This commit is contained in:
commit
c5566d3d77
|
|
@ -41,13 +41,6 @@ struct Get_io_signature<std::pair<int, int> > {
|
||||||
}
|
}
|
||||||
}; // end Get_io_signature<std::pair<int, int> >
|
}; // end Get_io_signature<std::pair<int, int> >
|
||||||
|
|
||||||
inline std::ostream& operator<<(std::ostream& out, const std::pair<int, int>& id) {
|
|
||||||
return out << id.first << " " << id.second;
|
|
||||||
}
|
|
||||||
inline std::istream& operator>>(std::istream& in, std::pair<int, int>& id) {
|
|
||||||
return in >> id.first >> id.second;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
class Output_rep<std::pair<int, int> > : public IO_rep_is_specialized {
|
class Output_rep<std::pair<int, int> > : public IO_rep_is_specialized {
|
||||||
typedef std::pair<int, int> T;
|
typedef std::pair<int, int> T;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue