Skip to content

Commit

Permalink
Fix dead code build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nate-yocom committed Jan 31, 2024
1 parent 5b98553 commit 0c63b8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub struct Shell {
number_of_lines: u8,
source_mode: SourceMode,
always_reg_dis: bool,
current_file: Option<i64>,
//current_file: Option<i64>,
}
static VERBOSE: AtomicBool = AtomicBool::new(false);
static SHELL_HISTORY_FILE: &str = ".db65_history";
Expand All @@ -58,7 +58,7 @@ impl Shell {
number_of_lines: 10,
source_mode: SourceMode::C,
always_reg_dis: false,
current_file: None,
//current_file: None,
}
}
fn say(s: &str, v: bool) {
Expand Down

0 comments on commit 0c63b8d

Please sign in to comment.