From e18e539ad263d24e59d2930e51a76abc18e74bad Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Thu, 14 Mar 2013 08:00:24 +0000 Subject: Changed DelayedFluidSimulatorData to be a vector rather than a list, performance doubled :) git-svn-id: http://mc-server.googlecode.com/svn/trunk@1268 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/ChunkDef.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source/ChunkDef.h') diff --git a/source/ChunkDef.h b/source/ChunkDef.h index 927957e07..1e368b50b 100644 --- a/source/ChunkDef.h +++ b/source/ChunkDef.h @@ -538,8 +538,9 @@ public: } ; // Illegal in C++03: typedef std::list< cCoordWithData > cCoordWithDataList; -typedef cCoordWithData cCoordWithInt; -typedef std::list cCoordWithIntList; +typedef cCoordWithData cCoordWithInt; +typedef std::list cCoordWithIntList; +typedef std::vector cCoordWithIntVector; -- cgit v1.2.3