From 32b48aeb75db4ad40fe0173614e585f9bee72257 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 1 Dec 2016 11:16:25 -0700 Subject: Found a big problem with order of operations. I believe this is because I'm using right tail recursion, but I'm not really sure how I could change it for this program. order of operations is being observed perfectly, but then operations are being performed from right to left, not left to right. I think I may be reducing too frequently, honestly. --- src/token.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/token.h') diff --git a/src/token.h b/src/token.h index 4ad1136..5bede41 100644 --- a/src/token.h +++ b/src/token.h @@ -40,7 +40,6 @@ public: mMetaOperator = 0x4000, mMetaAltOp = 0x8000, mMetaMeta = 0x0100, - }; Token(); -- cgit v1.2.3