Skip to content

Commit

Permalink
Merge pull request #11288 from KratosMultiphysics/geo/avoid-info-over…
Browse files Browse the repository at this point in the history
…ride

Let PrintInfo use Info() in process base class.
  • Loading branch information
WPK4FEM committed Jun 23, 2023
2 parents 991b4b7 + e5f032a commit 1866070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kratos/processes/process.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class Process : public Flags
/// Print information about this object.
void PrintInfo(std::ostream& rOStream) const override
{
rOStream << "Process";
rOStream << Info();
}

/// Print object's data.
Expand Down

0 comments on commit 1866070

Please sign in to comment.