LibWeb: Run clang-format

We mistakenly did not add the clang-format linter to the new repo's CI,
and some unformatted code made its way into the repo.
This commit is contained in:
Timothy Flynn 2024-06-16 12:47:35 -04:00 committed by Tim Flynn
commit 06ed0dfcc1
Notes: sideshowbarker 2024-07-18 22:57:59 +09:00
6 changed files with 28 additions and 28 deletions

View file

@ -70,8 +70,7 @@ public:
bool operator==(Steps const&) const = default;
};
struct Function : public Variant<Linear, CubicBezier, Steps>
{
struct Function : public Variant<Linear, CubicBezier, Steps> {
using Variant::Variant;
double evaluate_at(double input_progress, bool before_flag) const;