Skip to content
Snippets Groups Projects
Commit 423cc00a authored by Andrew Heather's avatar Andrew Heather
Browse files

adding const-ness

parent 0fb2546a
Branches
Tags
No related merge requests found
......@@ -171,7 +171,7 @@ void Foam::phaseProperties::checkTotalMassFraction() const
}
Foam::word Foam::phaseProperties::phaseToStateLabel(phaseType pt) const
Foam::word Foam::phaseProperties::phaseToStateLabel(const phaseType pt) const
{
word state = "(unknown)";
switch (pt)
......
......@@ -107,7 +107,7 @@ private:
void checkTotalMassFraction() const;
//- Set the state label
word phaseToStateLabel(phaseType pt) const;
word phaseToStateLabel(const phaseType pt) const;
public:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment