Skip to content

Commit

Permalink
Fix code style issues with clang_format
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Oct 20, 2024
1 parent 6b4bda3 commit 5df5c6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pathanimation.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct PathSegment {

class PathAnimation : public Animation {
public:
PathAnimation() : PathAnimation(std::vector<PathSegment>()) {};
PathAnimation() : PathAnimation(std::vector<PathSegment>()){};
PathAnimation(std::vector<PathSegment> segments);

std::vector<PathSegment> Path;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/vulkan/renderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class Renderer : public BaseRenderer {
void SetScissorRect(RectF const& rect) override;
void DisableScissor() override;

void SetBlendMode(RendererBlendMode blendMode) override {};
void SetBlendMode(RendererBlendMode blendMode) override{};

private:
void CreateInstance();
Expand Down

0 comments on commit 5df5c6d

Please sign in to comment.