Remove unused LexerKeyword PoundWord

This commit is contained in:
Kasper 2020-11-26 18:26:55 +01:00
parent 6cc278a829
commit dcc948b5d5
3 changed files with 4 additions and 2 deletions

View File

@ -83,6 +83,9 @@ round(sqrt(2)^4)! liters
- Digital storage (bytes etc) - Digital storage (bytes etc)
- Energy - Energy
- Power - Power
- Electric current
- Resistance
- Voltage
- Pressure - Pressure
- Frequency - Frequency
- Speed - Speed

View File

@ -6,7 +6,7 @@ use crate::UnaryOperator::{Percent, Factorial};
use crate::TextOperator::{Of, To}; use crate::TextOperator::{Of, To};
use crate::NamedNumber::*; use crate::NamedNumber::*;
use crate::Constant::{E, Pi}; use crate::Constant::{E, Pi};
use crate::LexerKeyword::{In, PercentChar, Per, Mercury, Hg, PoundForce, PoundWord, Force, DoubleQuotes}; use crate::LexerKeyword::{In, PercentChar, Per, Mercury, Hg, PoundForce, Force, DoubleQuotes};
use crate::FunctionIdentifier::{Cbrt, Ceil, Cos, Exp, Abs, Floor, Ln, Log, Round, Sin, Sqrt, Tan}; use crate::FunctionIdentifier::{Cbrt, Ceil, Cos, Exp, Abs, Floor, Ln, Log, Round, Sin, Sqrt, Tan};
use crate::units::Unit; use crate::units::Unit;
use crate::units::Unit::*; use crate::units::Unit::*;

View File

@ -165,7 +165,6 @@ pub enum LexerKeyword {
Mercury, Mercury,
Hg, Hg,
PoundForce, PoundForce,
PoundWord,
Force, Force,
} }