Skip to content

Commit

Permalink
Bump language version
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Oct 25, 2017
1 parent 3395e3b commit 8191992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libexpr/primops.cc
Expand Up @@ -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
Expand Down

3 comments on commit 8191992

@copumpkin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What changed?

@edolstra
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The structured attributes support. Unfortunately that's not so much a language change as a build.cc (i.e. daemon) change, but we don't really have a way to express that...

@copumpkin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I see, thanks!

Please sign in to comment.