mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 16:23:02 +00:00
libexpr: Reduce nonRecursiveStackReservation
128 is still beyond the point where the allocation overhead is insignificant, but we don't anticipate to overflow for these use cases, so it's fine.
This commit is contained in:
parent
a96be29db5
commit
4e27f1947a
@ -14,7 +14,7 @@ namespace nix {
|
||||
*
|
||||
* Note: this is expected to be multiplied by sizeof(Value), or about 24 bytes.
|
||||
*/
|
||||
constexpr size_t nonRecursiveStackReservation = 256;
|
||||
constexpr size_t nonRecursiveStackReservation = 128;
|
||||
|
||||
/**
|
||||
* Functions that maybe applied to self-similar inputs, such as concatMap on a
|
||||
|
Loading…
Reference in New Issue
Block a user