1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-12 21:46:01 +01:00
This commit is contained in:
Eelco Dolstra 2010-03-23 19:19:52 +00:00
parent 0910ae9568
commit e8f7978274

View file

@ -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. */