mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 09:49:21 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
Notes:
sideshowbarker
2024-07-17 16:21:09 +09:00
Author: https://github.com/IdanHo
Commit: 086969277e
Pull-request: https://github.com/SerenityOS/serenity/pull/12321
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/bgianfo ✅
1665 changed files with 8479 additions and 8479 deletions
|
@ -27,7 +27,7 @@ public:
|
|||
|
||||
int size() const { return m_indices.size(); }
|
||||
bool is_empty() const { return m_indices.is_empty(); }
|
||||
bool contains(const ModelIndex& index) const { return m_indices.contains(index); }
|
||||
bool contains(ModelIndex const& index) const { return m_indices.contains(index); }
|
||||
bool contains_row(int row) const
|
||||
{
|
||||
for (auto& index : m_indices) {
|
||||
|
@ -37,11 +37,11 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
void set(const ModelIndex&);
|
||||
void add(const ModelIndex&);
|
||||
void add_all(const Vector<ModelIndex>&);
|
||||
void toggle(const ModelIndex&);
|
||||
bool remove(const ModelIndex&);
|
||||
void set(ModelIndex const&);
|
||||
void add(ModelIndex const&);
|
||||
void add_all(Vector<ModelIndex> const&);
|
||||
void toggle(ModelIndex const&);
|
||||
bool remove(ModelIndex const&);
|
||||
void clear();
|
||||
|
||||
template<typename Callback>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue