We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e413b commit 020d13eCopy full SHA for 020d13e
cpu/src/memory.rs
@@ -220,7 +220,7 @@ mod mref {
220
}
221
222
223
- impl<'a> MemoryRead for MemoryReadRef<'a> {
+ impl MemoryRead for MemoryReadRef<'_> {
224
fn get_meta_bit(&self) -> bool {
225
*self.meta
226
@@ -247,7 +247,7 @@ mod mref {
247
248
249
250
- impl<'a> MemoryRead for MemoryWriteRef<'a> {
+ impl MemoryRead for MemoryWriteRef<'_> {
251
252
253
@@ -261,7 +261,7 @@ mod mref {
261
262
263
264
- impl<'a> MemoryWriteRef<'a> {
+ impl MemoryWriteRef<'_> {
265
pub(super) fn set_meta_bit_to_value(&mut self, value: bool) {
266
*self.meta = value;
267
0 commit comments