summary refs log tree commit diff stats
path: root/compiler/ast.nim
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2020-03-11 01:01:25 +0100
committerGitHub <noreply@github.com>2020-03-11 01:01:25 +0100
commit2f557652d41dea81e43d36c3e89258ece620609e (patch)
tree0cac1d487c4cc8d0818abbaaebeee75ec959eea4 /compiler/ast.nim
parente64f1c7ee4a25a1df837617f4a79ce7e515b9e0d (diff)
downloadNim-2f557652d41dea81e43d36c3e89258ece620609e.tar.gz
fix operators containing percent for VM usage (#13536)
* fixes #13513
* merge tarithmetics in tarithm
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r--compiler/ast.nim2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim
index 43ea2b39c..b82002b06 100644
--- a/compiler/ast.nim
+++ b/compiler/ast.nim
@@ -617,7 +617,6 @@ type
     mEqI, mLeI, mLtI,
     mEqF64, mLeF64, mLtF64,
     mLeU, mLtU,
-    mLeU64, mLtU64,
     mEqEnum, mLeEnum, mLtEnum,
     mEqCh, mLeCh, mLtCh,
     mEqB, mLeB, mLtB,
@@ -687,7 +686,6 @@ const
     mEqI, mLeI, mLtI,
     mEqF64, mLeF64, mLtF64,
     mLeU, mLtU,
-    mLeU64, mLtU64,
     mEqEnum, mLeEnum, mLtEnum,
     mEqCh, mLeCh, mLtCh,
     mEqB, mLeB, mLtB,