output an address

This commit is contained in:
Andreas Fabri 2025-05-14 15:52:18 +01:00
parent 03734f4f18
commit 10fe2f5659
2 changed files with 3 additions and 0 deletions

View File

@ -113,6 +113,7 @@ struct HDS_edge {
friend std::ostream& operator<<(std::ostream& os, const HDS_edge& e)
{
os << e.halfedge_;
return os;
}
private:

View File

@ -114,6 +114,7 @@ namespace internal {
friend std::ostream& operator<<(std::ostream& os, const Self& i)
{
os << &*(i);
return os;
}
};
@ -179,6 +180,7 @@ namespace internal {
friend std::ostream& operator<<(std::ostream& os, const Self& i)
{
os << &*(i);
return os;
}
};