Skip to content

Commit

Permalink
remove unused result warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hugtalbot committed Feb 28, 2024
1 parent 02d8d27 commit a30fa6b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ void PREquivalentStiffnessForceField<DataTypes>::init()

} else {

m_CInv[n].invert(m_complianceMat[n]);
bool invert = m_CInv[n].invert(m_complianceMat[n]);
if(!invert)
msg_error() << "Unable to invert compliance matrix at init";
}
}
filebuffer.close();
Expand Down

0 comments on commit a30fa6b

Please sign in to comment.