Skip to content
Snippets Groups Projects
Commit c73d5ecc authored by Sebastien Ponce's avatar Sebastien Ponce
Browse files

Fixes in the printing and coming from usage of compositions

parent 701bb674
Branches
Tags
No related merge requests found
......@@ -44,7 +44,8 @@ castor::MessageAck::MessageAck() :
//------------------------------------------------------------------------------
// Destructor
//------------------------------------------------------------------------------
castor::MessageAck::~MessageAck() {};
castor::MessageAck::~MessageAck() {
};
//------------------------------------------------------------------------------
// print
......@@ -54,7 +55,7 @@ void castor::MessageAck::print(std::ostream& stream,
castor::ObjectSet& alreadyPrinted) const {
if (alreadyPrinted.find(this) != alreadyPrinted.end()) {
// Circular dependency, this object was already printed
stream << "Back pointer, see above" << std::endl;
stream << indent << "Back pointer, see above" << std::endl;
return;
}
// Output of all members
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment