Squash minor warning in vm/mod.rs

Inst::Comment is no longer printing, so we don't need the "comment"
variable to be usable.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2023-04-07 00:27:28 -07:00
parent 7bac4306c3
commit 4cec6f0765

View File

@@ -236,7 +236,7 @@ impl Vm {
); );
self.set_condition(top.is_truthy()); self.set_condition(top.is_truthy());
} }
Inst::Comment(comment) => { Inst::Comment(_comment) => {
/* no-op */ /* no-op */
//println!("COMMENT: {comment}"); //println!("COMMENT: {comment}");
} }