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:
Laurent Rineau 2019-07-03 11:18:30 +02:00
commit c5566d3d77
1 changed files with 0 additions and 7 deletions

View File

@ -41,13 +41,6 @@ struct 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 <>
class Output_rep<std::pair<int, int> > : public IO_rep_is_specialized {
typedef std::pair<int, int> T;