uppsrc: Fixed new clang warnings

This commit is contained in:
Mirek Fidler 2025-09-30 10:27:39 +02:00
parent e023fcad2a
commit eaf8112b15
3 changed files with 6 additions and 4 deletions

View file

@ -14,8 +14,10 @@ struct MyApp : public TopWindow {
p.Move(10, 10);
p.Arc(10, 10, 0.1, M_PI, M_PI);
// p.RoundedRectangle(2, 2, 100, 100, 0.1)
// p.Stroke(5, Blue());
p.Stroke(0.1, Blue());
p.Stroke(5, Blue());
// p.Stroke(0.1, Blue());
p.Circle(20, 20, 10).Stroke(1, Blue());
}
};