summaryrefslogtreecommitdiff
path: root/src/fios.h
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2020-12-15 00:22:04 +0100
committerMichael Lutz <michi@icosahedron.de>2020-12-15 00:29:30 +0100
commit79240eab1ee4abb2882a40c7ac18e4915b4dc820 (patch)
tree98abb3c8ccf490efa459ed29fe7f28699c8d9928 /src/fios.h
parentcc1679e3171bf6982164c4072a773fdd687ea885 (diff)
downloadopenttd-79240eab1ee4abb2882a40c7ac18e4915b4dc820.tar.xz
Codechange: Make use of the improved C++17 emplace_back function.
Diffstat (limited to 'src/fios.h')
-rw-r--r--src/fios.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fios.h b/src/fios.h
index 6a7b6bf01..259e493b2 100644
--- a/src/fios.h
+++ b/src/fios.h
@@ -119,8 +119,7 @@ public:
*/
inline FiosItem *Append()
{
- /*C++17: return &*/ this->files.emplace_back();
- return &this->files.back();
+ return &this->files.emplace_back();
}
/**