diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-01-13T14·21+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-01-13T14·21+0000 |
commit | 11158028be348ed9eb58bf78f4cc9711e8bfe664 (patch) | |
tree | d9c0419661749c4d9afd47f9400ebb542bffe444 /src/libexpr/get-drvs.cc | |
parent | 1b7840b949f038d44f31492bd59e0e189e17ef9c (diff) |
* Cleanup.
Diffstat (limited to 'src/libexpr/get-drvs.cc')
-rw-r--r-- | src/libexpr/get-drvs.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/get-drvs.cc b/src/libexpr/get-drvs.cc index 3c7061fcd33a..ba9fbcd6dfac 100644 --- a/src/libexpr/get-drvs.cc +++ b/src/libexpr/get-drvs.cc @@ -43,7 +43,7 @@ MetaInfo DrvInfo::queryMetaInfo(EvalState & state) const Expr a = attrs->get(toATerm("meta")); if (!a) return meta; /* fine, empty meta information */ - ATermMap attrs2(16); /* !!! */ + ATermMap attrs2; queryAllAttrs(evalExpr(state, a), attrs2); for (ATermMap::const_iterator i = attrs2.begin(); i != attrs2.end(); ++i) { @@ -81,7 +81,7 @@ static bool getDerivation(EvalState & state, Expr e, e = evalExpr(state, e); if (!matchAttrs(e, es)) return true; - boost::shared_ptr<ATermMap> attrs(new ATermMap(32)); /* !!! */ + boost::shared_ptr<ATermMap> attrs(new ATermMap()); queryAllAttrs(e, *attrs, false); Expr a = attrs->get(toATerm("type")); |