Couple more corrections + misc. (#352) #343
release.yml
on: push
check-symbols
/
test
6s
check-headers
/
compile
7s
check-headers
/
format-check
7s
check-symbols
/
format-check
11s
check-resymgen
/
format-check
10s
check-resymgen
/
build-and-test
32s
check-resymgen
/
clippy-check
23s
check-headers
/
implicit-padding-check
6s
check-headers
/
compile-no-builtin
8s
check-headers
/
compile-unsized
8s
check-symbol-header-sync
/
sync-check
9s
check-symbol-header-sync
/
header-sync-check
8s
generate-and-deploy
19s
Annotations
11 warnings
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/types.rs#L305
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/types.rs:305:25
|
305 | pub fn entry_native(&mut self, native_key: Version) -> Entry<Version, T> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
305 | pub fn entry_native(&mut self, native_key: Version) -> Entry<'_, Version, T> {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/types.rs#L295
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/types.rs:295:18
|
295 | pub fn entry(&mut self, key: Version) -> Entry<Version, T> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
295 | pub fn entry(&mut self, key: Version) -> Entry<'_, Version, T> {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/types.rs#L180
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/types.rs:180:17
|
180 | pub fn iter(&self) -> LinkableIter {
| ^^^^^ ^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
180 | pub fn iter(&self) -> LinkableIter<'_> {
| ++++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/symgen.rs#L1204
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/symgen.rs:1204:26
|
1204 | pub fn data_realized(&self, version_name: &str) -> impl Iterator<Item = RealizedSymbol> + '_ {
| ^^^^^ ^^^^^^^^^^^^^^ ^^ the same lifetime is elided here
| | |
| the lifetime is elided here the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
1204 | pub fn data_realized(&self, version_name: &str) -> impl Iterator<Item = RealizedSymbol<'_>> + '_ {
| ++++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/symgen.rs#L1196
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/symgen.rs:1196:9
|
1196 | &self,
| ^^^^^ the lifetime is elided here
1197 | version_name: &str,
1198 | ) -> impl Iterator<Item = RealizedSymbol> + '_ {
| ^^^^^^^^^^^^^^ ^^ the same lifetime is elided here
| |
| the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
1198 | ) -> impl Iterator<Item = RealizedSymbol<'_>> + '_ {
| ++++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/symgen.rs#L1187
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/symgen.rs:1187:9
|
1187 | &self,
| ^^^^^ the lifetime is elided here
1188 | version_name: &str,
1189 | ) -> impl Iterator<Item = RealizedSymbol> + '_ {
| ^^^^^^^^^^^^^^ ^^ the same lifetime is elided here
| |
| the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
1189 | ) -> impl Iterator<Item = RealizedSymbol<'_>> + '_ {
| ++++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/symgen.rs#L828
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/symgen.rs:828:26
|
828 | pub fn data_realized(&self, version_name: &str) -> impl Iterator<Item = RealizedSymbol> + '_ {
| ^^^^^ ^^^^^^^^^^^^^^ ^^ the same lifetime is elided here
| | |
| the lifetime is elided here the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
828 | pub fn data_realized(&self, version_name: &str) -> impl Iterator<Item = RealizedSymbol<'_>> + '_ {
| ++++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/symgen.rs#L820
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/symgen.rs:820:9
|
820 | &self,
| ^^^^^ the lifetime is elided here
821 | version_name: &str,
822 | ) -> impl Iterator<Item = RealizedSymbol> + '_ {
| ^^^^^^^^^^^^^^ ^^ the same lifetime is elided here
| |
| the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
822 | ) -> impl Iterator<Item = RealizedSymbol<'_>> + '_ {
| ++++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/data_formats/symgen_yml/symgen.rs#L813
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/data_formats/symgen_yml/symgen.rs:813:26
|
813 | pub fn iter_realized(&self, version_name: &str) -> impl Iterator<Item = RealizedSymbol> + '_ {
| ^^^^^ ^^^^^^^^^^^^^^ ^^ the same lifetime is elided here
| | |
| the lifetime is elided here the same lifetime is hidden here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
= note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
|
813 | pub fn iter_realized(&self, version_name: &str) -> impl Iterator<Item = RealizedSymbol<'_>> + '_ {
| ++++
|
|
doc list item without indentation:
src/transform.rs#L71
warning: doc list item without indentation
--> src/transform.rs:71:5
|
71 | /// a vector containing a single empty string ("").
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#doc_lazy_continuation
help: indent this line
|
71 | /// a vector containing a single empty string ("").
| +++
|
|
doc list item without indentation:
src/transform.rs#L69
warning: doc list item without indentation
--> src/transform.rs:69:5
|
69 | /// based on the addresses it contains.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#doc_lazy_continuation
= note: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
|
69 | /// based on the addresses it contains.
| +++
|