From 9c4d1cb9b00dd1e27bb1c186df5ca70bbafbb60d Mon Sep 17 00:00:00 2001 From: EvilSpirit Date: Sat, 9 Jan 2016 18:18:14 +0600 Subject: [PATCH] Remove unused Expr operations ENTITY and POINT. These weren't even used in any code, only defined. --- src/expr.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/expr.h b/src/expr.h index e2ce454..eaf79b0 100644 --- a/src/expr.h +++ b/src/expr.h @@ -20,10 +20,6 @@ public: // if we know that the param table won't move around) PARAM_PTR = 1, - // These are used only for user-entered expressions. - POINT = 10, - ENTITY = 11, - CONSTANT = 20, PLUS = 100, @@ -55,7 +51,6 @@ public: double v; hParam parh; Param *parp; - hEntity entity; Expr *b; // For use while parsing