mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
Merge pull request #11849 from NixOS/autocall-const
autoCallFunction: accept const Bindings &
This commit is contained in:
commit
545956d56a
@ -1730,7 +1730,7 @@ void EvalState::incrFunctionCall(ExprLambda * fun)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void EvalState::autoCallFunction(Bindings & args, Value & fun, Value & res)
|
void EvalState::autoCallFunction(const Bindings & args, Value & fun, Value & res)
|
||||||
{
|
{
|
||||||
auto pos = fun.determinePos(noPos);
|
auto pos = fun.determinePos(noPos);
|
||||||
|
|
||||||
|
@ -693,7 +693,7 @@ public:
|
|||||||
* Automatically call a function for which each argument has a
|
* Automatically call a function for which each argument has a
|
||||||
* default value or has a binding in the `args` map.
|
* default value or has a binding in the `args` map.
|
||||||
*/
|
*/
|
||||||
void autoCallFunction(Bindings & args, Value & fun, Value & res);
|
void autoCallFunction(const Bindings & args, Value & fun, Value & res);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocation primitives.
|
* Allocation primitives.
|
||||||
|
Loading…
Reference in New Issue
Block a user