Skip to content

Commit

Permalink
Made domain attribute optional for domain_data.
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMaas1978 committed Jul 5, 2024
1 parent 078dcc2 commit e28f587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FEBioXML/FEBioOutputSection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ void FEBioOutputSection::ParseLogfile(XMLTag &tag)
{
FEDomainDataRecord* prec = new FEDomainDataRecord(&fem);
pdr = prec;
const char* sz = tag.AttributeValue("domain");
const char* sz = tag.AttributeValue("domain", true);
if (sz)
{
int domainIndex = mesh.FindDomainIndex(sz);
Expand Down

0 comments on commit e28f587

Please sign in to comment.