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)(2)
  • Loading branch information
Mikalai Sukhikh authored and Mikalai Sukhikh committed Aug 3, 2022
1 parent e9fa994 commit a844dfc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/indigo-core/molecule/molecule_rgroups_composition.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,7 @@ 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 a844dfc

Please sign in to comment.