diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-03-23T19·19+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-03-23T19·19+0000 |
commit | e8f7978274708a8e0c29903910f4942da955c926 (patch) | |
tree | ee6fedb29e075339adfb721617b4fb52ac009456 | |
parent | 0910ae95680011915211769577a4219384b695af (diff) |
-rw-r--r-- | src/libutil/util.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index f609e8944ba8..f4478b449cdc 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -15,7 +15,7 @@ namespace nix { #define foreach(it_type, it, collection) \ - for (it_type it = collection.begin(); it != collection.end(); ++it) + for (it_type it = (collection).begin(); it != (collection).end(); ++it) /* Return an environment variable. */ |