diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-14T15·01+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-14T15·01+0000 |
commit | 110d1557782fac4f8cafa27e5cbbcdebefb7a4c7 (patch) | |
tree | 4ddae428d11619534363f4e9be8dc10e35e7e5ce /src/libexpr/nixexpr.hh | |
parent | 9985230c00226826949473c3862c0c3afea74aaf (diff) |
* Implemented withs.
Diffstat (limited to 'src/libexpr/nixexpr.hh')
-rw-r--r-- | src/libexpr/nixexpr.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh index 0422e5cf4638..f9ed34f58a3c 100644 --- a/src/libexpr/nixexpr.hh +++ b/src/libexpr/nixexpr.hh @@ -170,6 +170,7 @@ struct ExprWith : Expr { Pos pos; Expr * attrs, * body; + int prevWith; ExprWith(const Pos & pos, Expr * attrs, Expr * body) : pos(pos), attrs(attrs), body(body) { }; COMMON_METHODS }; |