Skip to content

Revert "Fix controller tracking prediction logic" (#1779) #72

Revert "Fix controller tracking prediction logic" (#1779)

Revert "Fix controller tracking prediction logic" (#1779) #72

GitHub Actions / clippy succeeded Aug 13, 2023 in 0s

clippy

4 warnings

Details

Results

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

Versions

  • rustc 1.71.1 (eb26296b5 2023-08-03)
  • cargo 1.71.1 (7f1d04c00 2023-07-29)
  • clippy 0.1.71 (eb26296b 2023-08-03)

Annotations

Check warning on line 22 in alvr\sockets\src\backend\udp.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

function `connect` is never used

warning: function `connect` is never used
  --> alvr\sockets\src\backend\udp.rs:22:8
   |
22 | pub fn connect(socket: &UdpSocket, peer_ip: IpAddr, port: u16) -> Result<(UdpSocket, UdpSocket)> {
   |        ^^^^^^^

Check warning on line 10 in alvr\sockets\src\backend\udp.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

function `bind` is never used

warning: function `bind` is never used
  --> alvr\sockets\src\backend\udp.rs:10:8
   |
10 | pub fn bind(
   |        ^^^^
   |
   = note: `#[warn(dead_code)]` on by default

Check warning on line 759 in alvr\launcher\src\main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

variable does not need to be mutable

warning: variable does not need to be mutable
   --> alvr\launcher\src\main.rs:759:9
    |
759 |     let mut installation_dir = data_dir().extended(VERSIONS_SUBDIR).extended(&release.tag);
    |         ----^^^^^^^^^^^^^^^^
    |         |
    |         help: remove this `mut`
    |
    = note: `#[warn(unused_mut)]` on by default

Check warning on line 6 in alvr\launcher\src\main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `Permissions`

warning: unused import: `Permissions`
 --> alvr\launcher\src\main.rs:6:22
  |
6 |     fs::{self, File, Permissions},
  |                      ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default