(svn r13575) -Codechange: Move small vector to core since it fits better in there

-Codechange: convert smallvector from struct to class
This commit is contained in:
skidd13
2008-06-19 10:19:02 +00:00
parent a7e3f09f7c
commit ad9b19b77a
8 changed files with 22 additions and 20 deletions

View File

@@ -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;