remove superfluous mut
This commit is contained in:
parent
0c2faac9ce
commit
8445a51d80
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ fn main() {
|
|||
let _ = rl.load_history(&hist);
|
||||
}
|
||||
|
||||
let mut vt = Rc::new(RefCell::new(VTable::new()));
|
||||
let vt = Rc::new(RefCell::new(VTable::new()));
|
||||
// if we fail to get stdlib we can just use this one
|
||||
let mut ft = Rc::new(RefCell::new(FTable::new()));
|
||||
match get_stdlib() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue