Skip to content

Commit

Permalink
Fix tidy warning: tidy was right
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Dec 19, 2024
1 parent 246fd32 commit 44ad069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/AttributePathExpandIterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ std::optional<AttributeId> AttributePathExpandIterator::NextAttributeId(SearchSe
auto id = session.attributes->Next();
if (id.has_value())
{
return *id;
return id;
}

// Finished the data model, start with global attributes
Expand Down

0 comments on commit 44ad069

Please sign in to comment.