From f1aaea5022a7b9a3aec79fb21e04bcdb499a253f Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Thu, 2 Feb 2012 12:43:30 +0000 Subject: Removed nonsense "virtual inline" declaration from functions git-svn-id: http://mc-server.googlecode.com/svn/trunk@223 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cFireSimulator.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/cFireSimulator.h') diff --git a/source/cFireSimulator.h b/source/cFireSimulator.h index b42131ff3..fba71fece 100644 --- a/source/cFireSimulator.h +++ b/source/cFireSimulator.h @@ -13,17 +13,17 @@ public: virtual void Simulate( float a_Dt ); - virtual inline bool IsAllowedBlock( char a_BlockID ); + virtual bool IsAllowedBlock( char a_BlockID ); - virtual inline bool IsBurnable( char a_BlockID ); - virtual inline bool IsForeverBurnable( char a_BlockID ); - virtual inline bool FiresForever( char a_BlockID ); + virtual bool IsBurnable( char a_BlockID ); + virtual bool IsForeverBurnable( char a_BlockID ); + virtual bool FiresForever( char a_BlockID ); protected: virtual void AddBlock(int a_X, int a_Y, int a_Z); virtual void _AddBlock(int a_X, int a_Y, int a_Z); - virtual inline bool BurnBlockAround(int a_X, int a_Y, int a_Z); - virtual inline bool BurnBlock(int a_X, int a_Y, int a_Z); + virtual bool BurnBlockAround(int a_X, int a_Y, int a_Z); + virtual bool BurnBlock(int a_X, int a_Y, int a_Z); std::vector *m_Blocks; std::vector *m_Buffer; -- cgit v1.2.3