aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r--src/libexpr/eval.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index 1583665ba..413234f2b 100644
--- a/src/libexpr/eval.hh
+++ b/src/libexpr/eval.hh
@@ -213,8 +213,9 @@ private:
std::map<Path, Expr *> parseTrees;
- Paths searchPath;
- Paths::iterator searchPathInsertionPoint;
+ typedef list<std::pair<string, Path> > SearchPath;
+ SearchPath searchPath;
+ SearchPath::iterator searchPathInsertionPoint;
public: