x11rb: Update default cursor search path #1497
CI.yml
on: pull_request
code_gen
22s
clippy
2m 2s
clippy-rustfmt
2m 24s
msrv-check
4m 5s
non-amd64-test
4m 35s
non-linux-unix-test
58s
windows-stable
4m 5s
Matrix: build
Annotations
7 errors and 1 warning
clippy:
x11rb-protocol/src/wrapper.rs#L44
[clippy] reported by reviewdog 🐶
<pre><code>error: unnecessary qualification
--> x11rb-protocol/src/wrapper.rs:44:35
|
44 | let size = self.0.len() / core::mem::size_of::<T>();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> x11rb-protocol/src/lib.rs:49:5
|
49 | unused_qualifications,
| ^^^^^^^^^^^^^^^^^^^^^
help: remove the unnecessary path segments
|
44 - let size = self.0.len() / core::mem::size_of::<T>();
44 + let size = self.0.len() / size_of::<T>();
|
</code></pre>
Raw Output:
x11rb-protocol/src/wrapper.rs:44:35:e:
<pre><code>error: unnecessary qualification
--> x11rb-protocol/src/wrapper.rs:44:35
|
44 | let size = self.0.len() / core::mem::size_of::<T>();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> x11rb-protocol/src/lib.rs:49:5
|
49 | unused_qualifications,
| ^^^^^^^^^^^^^^^^^^^^^
help: remove the unnecessary path segments
|
44 - let size = self.0.len() / core::mem::size_of::<T>();
44 + let size = self.0.len() / size_of::<T>();
|
</code></pre>
__END__
|
clippy:
x11rb-protocol/src/wrapper.rs#L44
[clippy] reported by reviewdog 🐶
<pre><code>error: unnecessary qualification
--> x11rb-protocol/src/wrapper.rs:44:35
|
44 | let size = self.0.len() / core::mem::size_of::<T>();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> x11rb-protocol/src/lib.rs:49:5
|
49 | unused_qualifications,
| ^^^^^^^^^^^^^^^^^^^^^
help: remove the unnecessary path segments
|
44 - let size = self.0.len() / core::mem::size_of::<T>();
44 + let size = self.0.len() / size_of::<T>();
|
</code></pre>
Raw Output:
x11rb-protocol/src/wrapper.rs:44:35:e:
<pre><code>error: unnecessary qualification
--> x11rb-protocol/src/wrapper.rs:44:35
|
44 | let size = self.0.len() / core::mem::size_of::<T>();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> x11rb-protocol/src/lib.rs:49:5
|
49 | unused_qualifications,
| ^^^^^^^^^^^^^^^^^^^^^
help: remove the unnecessary path segments
|
44 - let size = self.0.len() / core::mem::size_of::<T>();
44 + let size = self.0.len() / size_of::<T>();
|
</code></pre>
__END__
|
build (beta)
Process completed with exit code 101.
|
build (nightly)
The job was canceled because "beta" failed.
|
build (nightly)
The operation was canceled.
|
build (stable)
The job was canceled because "beta" failed.
|
build (stable)
The operation was canceled.
|
clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: giraffate/clippy-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|