diff options
| author | David Jones <david@gogledd.cymru> | 2015-08-25 21:23:05 +0100 |
|---|---|---|
| committer | ShadowNinja <shadowninja@minetest.net> | 2015-08-25 18:33:52 -0400 |
| commit | 34b7a147dcf9831f3b4d81599c473ba01ff5da00 (patch) | |
| tree | e7a95bf333d782ebde897b25070c5d997174e2f5 /src/mapnode.cpp | |
| parent | 2480f2d06fe50295184a60d6659378f9a5d57065 (diff) | |
| download | minetest-34b7a147dcf9831f3b4d81599c473ba01ff5da00.tar.xz | |
Change i++ to ++i
Diffstat (limited to 'src/mapnode.cpp')
| -rw-r--r-- | src/mapnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapnode.cpp b/src/mapnode.cpp index fe9686f0d..732237833 100644 --- a/src/mapnode.cpp +++ b/src/mapnode.cpp @@ -192,7 +192,7 @@ static std::vector<aabb3f> transformNodeBox(const MapNode &n, facedir&=0x03; for(std::vector<aabb3f>::const_iterator i = fixed.begin(); - i != fixed.end(); i++) + i != fixed.end(); ++i) { aabb3f box = *i; |
