From 29d54a0956cf82a77551983d0218cfe5a55015ac Mon Sep 17 00:00:00 2001 From: Dennis Schridde Date: Sun, 1 Jun 2008 01:05:26 +0000 Subject: [PATCH] Fix order to silence warning git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5207 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map.h b/src/map.h index 1a2bfd4a5..5d8c390c4 100644 --- a/src/map.h +++ b/src/map.h @@ -135,7 +135,7 @@ static inline bool TileIsHighlighted(const MAPTILE* tile) } /** Check if tile contains a tall structure. Function is thread-safe. */ -WZ_DECL_PURE static inline bool TileHasTallStructure(const MAPTILE* tile) +static inline WZ_DECL_PURE bool TileHasTallStructure(const MAPTILE* tile) { return (tile->tileInfoBits & BITS_TALLSTRUCTURE); }