diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-10-25T13·18+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-10-25T13·18+0200 |
commit | 8191992c83bf4387b03c5fdaba818dc2b520462d (patch) | |
tree | b1f449db41daa981f3242f08dc40621c7e1b071a /src/libexpr/primops.cc | |
parent | 3395e3bbc4bc88a102600155ea996777669364ab (diff) |
Bump language version
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index afd344286607..6a50c99345e4 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -2008,7 +2008,7 @@ void EvalState::createBaseEnv() language feature gets added. It's not necessary to increase it when primops get added, because you can just use `builtins ? primOp' to check. */ - mkInt(v, 4); + mkInt(v, 5); addConstant("__langVersion", v); // Miscellaneous |