diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-19 15:25:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-20 17:05:57 +0300 |
commit | 48071e171de41a23197c7328ba038331a936e0eb (patch) | |
tree | 73c7ef1da8e5dd76469d75c0336d88c3371e4263 /src/maplayer.cpp | |
parent | d07fba228b5251862ad670e1d4f079c9456fab4b (diff) | |
download | ManaVerse-48071e171de41a23197c7328ba038331a936e0eb.tar.gz ManaVerse-48071e171de41a23197c7328ba038331a936e0eb.tar.bz2 ManaVerse-48071e171de41a23197c7328ba038331a936e0eb.tar.xz ManaVerse-48071e171de41a23197c7328ba038331a936e0eb.zip |
Replace for to FOR_EACH in some classes.
Diffstat (limited to 'src/maplayer.cpp')
-rw-r--r-- | src/maplayer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/maplayer.cpp b/src/maplayer.cpp index 7f952060d..dcc9621d2 100644 --- a/src/maplayer.cpp +++ b/src/maplayer.cpp @@ -618,8 +618,7 @@ void SpecialLayer::setTile(const int x, const int y, const int type) void SpecialLayer::addRoad(Path road) { - for (Path::const_iterator i = road.begin(), i_end = road.end(); - i != i_end; ++i) + FOR_EACH (Path::const_iterator, i, road) { const Position &pos = (*i); MapItem *item = getTile(pos.x, pos.y); |