aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tuplr.cpp')
-rw-r--r--tuplr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tuplr.cpp b/tuplr.cpp
index 22632ef..c726cc6 100644
--- a/tuplr.cpp
+++ b/tuplr.cpp
@@ -101,9 +101,9 @@ void
initLang(PEnv& penv, TEnv& tenv)
{
// Types
- tenv.def(penv.sym("Bool"), new AType(penv.sym("Bool"), Cursor()));
- tenv.def(penv.sym("Int"), new AType(penv.sym("Int"), Cursor()));
- tenv.def(penv.sym("Float"), new AType(penv.sym("Float"), Cursor()));
+ tenv.def(penv.sym("Bool"), new AType(penv.sym("Bool")));
+ tenv.def(penv.sym("Int"), new AType(penv.sym("Int")));
+ tenv.def(penv.sym("Float"), new AType(penv.sym("Float")));
// Literals
static bool trueVal = true;