summaryrefslogtreecommitdiff
path: root/src/script/squirrel_helper.hpp
diff options
context:
space:
mode:
authorHenry Wilson <m3henry@googlemail.com>2019-03-13 20:55:31 +0000
committerPeterN <peter@fuzzle.org>2019-03-26 20:15:57 +0000
commit03ca3190c9b73de3e43fe1e7e2293b8c1e3aa3d5 (patch)
tree7f7a4f88e80592b98c15465f01d9b8eb19096aa8 /src/script/squirrel_helper.hpp
parentcc62f4163f230ed82ef3b04187987d3e380cd570 (diff)
downloadopenttd-03ca3190c9b73de3e43fe1e7e2293b8c1e3aa3d5.tar.xz
Codechange: Use range-based for-loop in Auto[Free|Delete]SmallVector
Diffstat (limited to 'src/script/squirrel_helper.hpp')
-rw-r--r--src/script/squirrel_helper.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/squirrel_helper.hpp b/src/script/squirrel_helper.hpp
index add6b49c1..10f04f945 100644
--- a/src/script/squirrel_helper.hpp
+++ b/src/script/squirrel_helper.hpp
@@ -32,7 +32,7 @@ namespace SQConvert {
struct SQAutoFreePointers : std::vector<void *> {
~SQAutoFreePointers()
{
- for (uint i = 0; i < std::vector<void *>::size(); i++) free(std::vector<void *>::operator[](i));
+ for (void * p : *this) free(p);
}
};