Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libraries/enum_primitive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
[package]
name = "enum_primitive"
version = "0.1.0"
edition = "2021"

1 change: 1 addition & 0 deletions libraries/tock-cells/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
name = "tock-cells"
version = "0.1.0"
authors = ["Tock Project Developers <[email protected]>"]
edition = "2021"

2 changes: 1 addition & 1 deletion libraries/tock-cells/src/map_cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ impl<T> MapCell<T> {

#[cfg(test)]
mod tests {
use map_cell::MapCell;
use super::MapCell;

struct DropCheck<'a> {
flag: &'a mut bool,
Expand Down