Everywhere: Run clang-format

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

    clang-format-20 -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 2025-05-11 14:56:31 -04:00 committed by Andrew Kaster
commit ca9f3673c5
Notes: github-actions[bot] 2025-05-14 08:06:54 +00:00
3 changed files with 6 additions and 5 deletions

View file

@ -21,12 +21,12 @@ struct Options {
return typ { __VA_ARGS__ }; \
} \
typ name = default_##name(); \
Options& set_##name(typ new_value)& \
Options& set_##name(typ new_value) & \
{ \
name = move(new_value); \
return *this; \
} \
Options&& set_##name(typ new_value)&& \
Options&& set_##name(typ new_value) && \
{ \
name = move(new_value); \
return move(*this); \