Skip to content

Bump actions/checkout from 3 to 4 #13

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #13

GitHub Actions / clippy failed Sep 4, 2023 in 1s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.72.0 (5680fa18f 2023-08-23)
  • cargo 1.72.0 (103a7ff2e 2023-08-15)
  • clippy 0.1.72 (5680fa1 2023-08-23)

Annotations

Check failure on line 456 in src/binary_heap.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of `default` to create a unit struct

error: use of `default` to create a unit struct
   --> src/binary_heap.rs:456:35
    |
456 |             _not_sync: PhantomData::default(),
    |                                   ^^^^^^^^^^^ help: remove this call to `default`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#default_constructed_unit_structs

Check failure on line 341 in src/binary_heap.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of `default` to create a unit struct

error: use of `default` to create a unit struct
   --> src/binary_heap.rs:341:35
    |
341 |             _not_sync: PhantomData::default(),
    |                                   ^^^^^^^^^^^ help: remove this call to `default`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#default_constructed_unit_structs
    = note: `-D clippy::default-constructed-unit-structs` implied by `-D warnings`