We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb52cf commit 4369cd5Copy full SHA for 4369cd5
.github/workflows/checks.yml
@@ -25,5 +25,7 @@ jobs:
25
uses: actions/checkout@v4
26
- name: "Install clang-format"
27
run: sudo apt install -y clang-format
28
+ - name: "Cargo version"
29
+ run: cargo version
30
- name: "Run formatting checks"
31
run: ./bin/invrs_wrapper.sh format-code --check
invrs/src/tasks/eval.rs
@@ -1061,7 +1061,7 @@ impl Eval {
1061
stroke_width: 2,
1062
};
1063
1064
- let this_y = (y / y_ref) as f64;
+ let this_y = y / y_ref;
1065
let mut bar = Rectangle::new(
1066
[
1067
(x_orig + x as f64, 0 as f64),
0 commit comments