refactor: clang format line length

This commit is contained in:
Lars Toenning
2024-11-16 19:27:30 +01:00
parent c7779e1461
commit 1a0b2a8c5f
1352 changed files with 25994 additions and 26603 deletions

View File

@@ -31,10 +31,7 @@ namespace swift::misc
}
//! Return the values in the table as a flat list.
const CSequence<T> &getTable() const
{
return m_list;
}
const CSequence<T> &getTable() const { return m_list; }
private:
CSequence<T> m_list;
@@ -78,8 +75,8 @@ namespace swift::misc
return *this;
}
//! If T is in Ts, return proxy that will assign to member through the value at the given index in the flat list.
//! Otherwise, return member as std::reference_wrapper.
//! If T is in Ts, return proxy that will assign to member through the value at the given index in the flat
//! list. Otherwise, return member as std::reference_wrapper.
template <typename T>
auto maybeUnmemoize(T &member) const
{