Skip to content

Commit

Permalink
Syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
kleag committed May 1, 2024
1 parent 5cb230d commit b12ba7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lima_common/src/common/MediaticData/EntityType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ bool EntityType::operator<(const EntityType& other) const

bool EntityType::isNull() const
{
return (m_d->m_id==0 && m_d->m_groupId==static_cast<EntityGroupId>(0);
return (m_d->m_id==static_cast<EntityTypeId>(0)
&& m_d->m_groupId==static_cast<EntityGroupId>(0));
}

EntityTypeId EntityType::getTypeId() const
Expand Down

0 comments on commit b12ba7f

Please sign in to comment.