Rename CommonStructuredDataStructEntry to Property

This commit is contained in:
Jan
2022-03-20 17:40:12 +01:00
parent 996528eba5
commit 0a226652f2
5 changed files with 12 additions and 12 deletions

View File

@ -281,7 +281,7 @@ namespace sdd::struct_scope_sequences
// Sort the entries of the struct alphabetically
std::sort(state->m_current_struct->m_properties.begin(), state->m_current_struct->m_properties.end(),
[](const CommonStructuredDataStructEntry& e1, const CommonStructuredDataStructEntry& e2)
[](const CommonStructuredDataStructProperty& e1, const CommonStructuredDataStructProperty& e2)
{
return e1.m_name < e2.m_name;
});