diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-14T23·25+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-14T23·25+0000 |
commit | d39d3c6264707c466b21dfadd4d48653842a9156 (patch) | |
tree | af53c72ecf169d82bd501d49b71e8635b35252bd /src/libexpr/nixexpr.hh | |
parent | 267dc693d2ca8dea13199f92c265fc35fdb047f6 (diff) |
* Implemented inherit.
Diffstat (limited to 'src/libexpr/nixexpr.hh')
-rw-r--r-- | src/libexpr/nixexpr.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh index ffea7049fdba..9e5a262d7f46 100644 --- a/src/libexpr/nixexpr.hh +++ b/src/libexpr/nixexpr.hh @@ -127,7 +127,7 @@ struct ExprAttrs : Expr bool recursive; typedef std::map<Symbol, Expr *> Attrs; Attrs attrs; - list<Symbol> inherited; + list<VarRef> inherited; ExprAttrs() : recursive(false) { }; COMMON_METHODS }; |