mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:07:44 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -20,7 +20,7 @@ class StyleProperties : public RefCounted<StyleProperties> {
|
|||
public:
|
||||
StyleProperties() = default;
|
||||
|
||||
explicit StyleProperties(const StyleProperties&);
|
||||
explicit StyleProperties(StyleProperties const&);
|
||||
|
||||
static NonnullRefPtr<StyleProperties> create() { return adopt_ref(*new StyleProperties); }
|
||||
|
||||
|
@ -92,10 +92,10 @@ public:
|
|||
m_font = move(font);
|
||||
}
|
||||
|
||||
float line_height(const Layout::Node&) const;
|
||||
float line_height(Layout::Node const&) const;
|
||||
|
||||
bool operator==(const StyleProperties&) const;
|
||||
bool operator!=(const StyleProperties& other) const { return !(*this == other); }
|
||||
bool operator==(StyleProperties const&) const;
|
||||
bool operator!=(StyleProperties const& other) const { return !(*this == other); }
|
||||
|
||||
Optional<CSS::Position> position() const;
|
||||
Optional<int> z_index() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue