diff options
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 187e05ece050..980cdf4cb774 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -15,13 +15,6 @@ namespace nix { -#define foreach(it_type, it, collection) \ - for (it_type it = (collection).begin(); it != (collection).end(); ++it) - -#define foreach_reverse(it_type, it, collection) \ - for (it_type it = (collection).rbegin(); it != (collection).rend(); ++it) - - /* Return an environment variable. */ string getEnv(const string & key, const string & def = ""); |