mirror of https://github.com/CGAL/cgal
output an address
This commit is contained in:
parent
03734f4f18
commit
10fe2f5659
|
|
@ -113,6 +113,7 @@ struct HDS_edge {
|
||||||
|
|
||||||
friend std::ostream& operator<<(std::ostream& os, const HDS_edge& e)
|
friend std::ostream& operator<<(std::ostream& os, const HDS_edge& e)
|
||||||
{
|
{
|
||||||
|
os << e.halfedge_;
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,7 @@ namespace internal {
|
||||||
|
|
||||||
friend std::ostream& operator<<(std::ostream& os, const Self& i)
|
friend std::ostream& operator<<(std::ostream& os, const Self& i)
|
||||||
{
|
{
|
||||||
|
os << &*(i);
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
@ -179,6 +180,7 @@ namespace internal {
|
||||||
|
|
||||||
friend std::ostream& operator<<(std::ostream& os, const Self& i)
|
friend std::ostream& operator<<(std::ostream& os, const Self& i)
|
||||||
{
|
{
|
||||||
|
os << &*(i);
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue