diff options
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index c95a309359af..b34e91055a37 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -4,16 +4,21 @@ #include <map> #include "aterm.hh" -#include "hash.hh" #include "nixexpr.hh" -typedef map<Path, PathSet> DrvRoots; -typedef map<Path, Hash> DrvHashes; +namespace nix { + + +class Hash; + + +typedef std::map<Path, PathSet> DrvRoots; +typedef std::map<Path, Hash> DrvHashes; /* Cache for calls to addToStore(); maps source paths to the store paths. */ -typedef map<Path, Path> SrcToStore; +typedef std::map<Path, Path> SrcToStore; struct EvalState; @@ -74,5 +79,8 @@ Expr autoCallFunction(Expr e, const ATermMap & args); /* Print statistics. */ void printEvalStats(EvalState & state); + +} + #endif /* !__EVAL_H */ |