summaryrefslogtreecommitdiff
path: root/src/vehiclelist.h
diff options
context:
space:
mode:
authorskidd13 <skidd13@openttd.org>2008-06-19 10:19:02 +0000
committerskidd13 <skidd13@openttd.org>2008-06-19 10:19:02 +0000
commit2f65d35ead535a16e418f9dbf64468c7141519d8 (patch)
tree60ef81ba2a70923661577658f6b89c7e0df8ef16 /src/vehiclelist.h
parentc4cc5cdf3b2f8f349c723de98538adec45db9c55 (diff)
downloadopenttd-2f65d35ead535a16e418f9dbf64468c7141519d8.tar.xz
(svn r13575) -Codechange: Move small vector to core since it fits better in there
-Codechange: convert smallvector from struct to class
Diffstat (limited to 'src/vehiclelist.h')
-rw-r--r--src/vehiclelist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehiclelist.h b/src/vehiclelist.h
index 93a643e5a..a5ba00f8b 100644
--- a/src/vehiclelist.h
+++ b/src/vehiclelist.h
@@ -5,7 +5,7 @@
#ifndef VEHICLELIST_H
#define VEHICLELIST_H
-#include "misc/smallvec.h"
+#include "core/smallvec_type.hpp"
typedef SmallVector<const Vehicle *, 32> VehicleList;