WIP: change Forth output buffers to bbqs #834
Annotations
11 warnings
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L122
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:121:13
|
121 | /// Owned by the writer
| ^^^^^^^^^^^^^^^^^^^^^^^
122 | write: AtomicUsize::new(0),
| -------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
= note: `#[warn(unused_doc_comments)]` on by default
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L121
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:121:13
|
121 | /// Owned by the writer
| ^^^^^^^^^^^^^^^^^^^^^^^
122 | write: AtomicUsize::new(0),
| -------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
= note: `#[warn(unused_doc_comments)]` on by default
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L125
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:124:13
|
124 | /// Owned by the reader
| ^^^^^^^^^^^^^^^^^^^^^^^
125 | read: AtomicUsize::new(0),
| ------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L124
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:124:13
|
124 | /// Owned by the reader
| ^^^^^^^^^^^^^^^^^^^^^^^
125 | read: AtomicUsize::new(0),
| ------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L138
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:127:13
|
127 | / /// Cooperatively owned
128 | | ///
129 | | /// NOTE: This should generally be initialized as size_of::<self.buf>(), however
130 | | /// this would prevent the structure from being entirely zero-initialized,
... |
136 | | /// When read == last == write, no bytes will be allowed to be read (good), but
137 | | /// write grants can be given out (also good).
| |__________________________________________________________^
138 | last: AtomicUsize::new(0),
| ------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L127
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:127:13
|
127 | / /// Cooperatively owned
128 | | ///
129 | | /// NOTE: This should generally be initialized as size_of::<self.buf>(), however
130 | | /// this would prevent the structure from being entirely zero-initialized,
... |
136 | | /// When read == last == write, no bytes will be allowed to be read (good), but
137 | | /// write grants can be given out (also good).
| |__________________________________________________________^
138 | last: AtomicUsize::new(0),
| ------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L141
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:140:13
|
140 | /// Owned by the Writer, "private"
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
141 | reserve: AtomicUsize::new(0),
| ---------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L140
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:140:13
|
140 | /// Owned by the Writer, "private"
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
141 | reserve: AtomicUsize::new(0),
| ---------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L144
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:143:13
|
143 | /// Owned by the Reader, "private"
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
144 | read_in_progress: AtomicBool::new(false),
| ---------------------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
run just check:
source/abi/src/bbqueue_ipc/bbbuffer.rs#L143
warning: unused doc comment
--> source/abi/src/bbqueue_ipc/bbbuffer.rs:143:13
|
143 | /// Owned by the Reader, "private"
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
144 | read_in_progress: AtomicBool::new(false),
| ---------------------------------------- rustdoc does not generate documentation for expression fields
|
= help: use `//` for a plain comment
|
The logs for this run have expired and are no longer available.
Loading