diff options
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index dcd6209e306c..d8ea0f0ce70e 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -95,8 +95,9 @@ struct PrimOp struct Env { Env * up; - unsigned short prevWith; // nr of levels up to next `with' environment - bool haveWithAttrs; + unsigned short size; // used by ‘valueSize’ + unsigned short prevWith:15; // nr of levels up to next `with' environment + unsigned short haveWithAttrs:1; Value * values[0]; }; |