mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
* In theory, this should reduce the number of ATermMap
re-allocations.
This commit is contained in:
parent
4ada6db1fc
commit
2b3b6c9b34
2 changed files with 4 additions and 3 deletions
|
@ -26,7 +26,7 @@ void EvalState::addPrimOp(const string & name,
|
|||
/* Substitute an argument set into the body of a function. */
|
||||
static Expr substArgs(Expr body, ATermList formals, Expr arg)
|
||||
{
|
||||
ATermMap subs;
|
||||
ATermMap subs(ATgetLength(formals) * 2);
|
||||
Expr undefined = makeUndefined();
|
||||
|
||||
/* Get the formal arguments. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue