mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -37,10 +37,7 @@ public:
|
||||
entry.m_values.push_back(std::forward<V>(value));
|
||||
}
|
||||
|
||||
void Delete(Key const & key)
|
||||
{
|
||||
m_table.erase(key);
|
||||
}
|
||||
void Delete(Key const & key) { m_table.erase(key); }
|
||||
|
||||
// Unions clusters corresponding to |u| and |v|.
|
||||
//
|
||||
@@ -75,10 +72,7 @@ public:
|
||||
{
|
||||
EntryWithKey(Entry const * entry, Key const & key) : m_entry(entry), m_key(key) {}
|
||||
|
||||
bool operator<(EntryWithKey const & rhs) const
|
||||
{
|
||||
return m_entry->m_root < rhs.m_entry->m_root;
|
||||
}
|
||||
bool operator<(EntryWithKey const & rhs) const { return m_entry->m_root < rhs.m_entry->m_root; }
|
||||
|
||||
Entry const * m_entry;
|
||||
Key m_key;
|
||||
|
||||
Reference in New Issue
Block a user