remove leftover dbg!

This commit is contained in:
ConnorSkees 2020-04-01 15:49:49 -04:00
parent 6df6bcf1da
commit 07c8f7b2a9

View File

@ -246,7 +246,6 @@ impl Div for Value {
fn div(self, other: Self) -> Self::Output {
let precedence = Op::Div.precedence();
dbg!(&self, &other);
Ok(match self {
Self::Null => todo!(),
Self::Dimension(num, unit) => match other {