Skip to content

Commit

Permalink
Issue #520: core: replace RedBlackMap and RedBlackSet implementation
Browse files Browse the repository at this point in the history
Change formatting (clang-formatter)
  • Loading branch information
Mikalai Sukhikh authored and Mikalai Sukhikh committed Aug 3, 2022
1 parent ef247a1 commit e9fa994
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/indigo-core/molecule/molecule_rgroups_composition.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ namespace indigo

bool operator<(const Fragment& other) const
{
return std::pair<int, int>{rgroup, fragment} < std::pair<int, int> {other.rgroup, other.fragment};
return std::pair<int, int>{rgroup, fragment} <
std::pair<int, int>{other.rgroup, other.fragment};
}
};

Expand Down

0 comments on commit e9fa994

Please sign in to comment.