Skip to content
Snippets Groups Projects
Commit c2a37003 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Fix ConstraintSet::print

parent 1612e670
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ namespace hpp { ...@@ -72,7 +72,7 @@ namespace hpp {
std::ostream& ConstraintSet::print (std::ostream& os) const std::ostream& ConstraintSet::print (std::ostream& os) const
{ {
Parent_t::print (os); Parent_t::print (os);
if (edge_) os << "Built by edge " << edge_->name() << std::endl; if (edge_) os << iendl << "Built by edge " << edge_->name();
return os; return os;
} }
} // namespace manipulation } // namespace manipulation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment