(svn r17814) -Codechange: there's no need to invalidate the cache in the constructor of a CargoList; the list is empty, the CargoList is calloc-ed so all caches are 0.

This commit is contained in:
rubidium 2009-10-19 15:36:35 +00:00
parent fe575367f9
commit 75c375de54

View File

@ -222,7 +222,7 @@ protected:
public:
/** Create the cargo list */
FORCEINLINE CargoList() { this->InvalidateCache(); }
CargoList() {}
/** And destroy it ("frees" all cargo packets) */
~CargoList();