Changed all reference to thread with an RefCell to enforce mutability

This commit is contained in:
Quentin Legot
2023-03-09 14:00:42 +01:00
committed by François Autin
parent a1713e0373
commit 45fea708fc
6 changed files with 62 additions and 60 deletions

View File

@ -59,7 +59,7 @@ impl UContextT {
pub fn new() -> Self {
Self {
stackBottom: Vec::default()
stack_bottom: Vec::default()
}
}