Everywhere: Run clang-format

The following command was used to clang-format these files:

    clang-format-19 -i $(find . \
        -not \( -path "./\.*" -prune \) \
        -not \( -path "./Build/*" -prune \) \
        -not \( -path "./Toolchain/*" -prune \) \
        -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")
This commit is contained in:
Timothy Flynn 2024-12-27 18:47:33 -05:00 committed by Tim Flynn
commit 27478ec7d4
Notes: github-actions[bot] 2024-12-28 13:40:37 +00:00
57 changed files with 160 additions and 140 deletions

View file

@ -34,7 +34,7 @@ private:
, m_value(value)
{
}
ColumnCount() {};
ColumnCount() { }
Type m_type { Type::Auto };
Optional<int> m_value;

View file

@ -16,7 +16,9 @@ class Filter {
public:
Filter() = default;
Filter(FilterValueListStyleValue const& filter_value_list)
: m_filter_value_list { filter_value_list } {};
: m_filter_value_list { filter_value_list }
{
}
static Filter make_none()
{

View file

@ -71,11 +71,17 @@ private:
};
GridTrackPlacement()
: m_value(Auto {}) {};
: m_value(Auto {})
{
}
GridTrackPlacement(AreaOrLine value)
: m_value(value) {};
: m_value(value)
{
}
GridTrackPlacement(Span value)
: m_value(value) {};
: m_value(value)
{
}
Variant<Auto, AreaOrLine, Span> m_value;
};