From 2e9108afe9d16e74b7730691d204316dafcbfc30 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 13 Dec 2010 12:52:43 +0000 Subject: [PATCH] (svn r21496) -Fix (r21494): ofcourse older GCCs (< 4.3) have something to complain about --- src/tilearea_type.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tilearea_type.h b/src/tilearea_type.h index 01cffefae0..44a2ba3c23 100644 --- a/src/tilearea_type.h +++ b/src/tilearea_type.h @@ -72,6 +72,11 @@ protected: TileIterator(TileIndex tile) : tile(tile) { } + + /** Some compilers really like this. */ + virtual ~TileIterator() + { + } public: /** * Get the tile we are currently at.