diff options
author | rubidium <rubidium@openttd.org> | 2009-04-03 12:49:58 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-04-03 12:49:58 +0000 |
commit | 89d0eca6b74e3e2986425991674d3ffc67e9b974 (patch) | |
tree | a9a8b85ca45707ad3ca8b3d702645e0741aa5516 /src/core | |
parent | d84fb358f5e8628bc9dc89edf9494248e6fe0a97 (diff) | |
download | openttd-89d0eca6b74e3e2986425991674d3ffc67e9b974.tar.xz |
(svn r15931) -Codechange: let the host and ban lists use of SmallVector.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/smallvec_type.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/smallvec_type.hpp b/src/core/smallvec_type.hpp index 69625a2e0..ae3a827a7 100644 --- a/src/core/smallvec_type.hpp +++ b/src/core/smallvec_type.hpp @@ -267,4 +267,6 @@ public: } }; +typedef AutoFreeSmallVector<char*, 4> StringList; + #endif /* SMALLVEC_TYPE_HPP */ |