From faa63713e2a645cc053c46967f24dbe79222ad35 Mon Sep 17 00:00:00 2001 From: magumagu9 Date: Sun, 28 Jun 2009 19:51:48 +0000 Subject: [PATCH] Remove a bunch of unnecessary "inline" designators. This was actually breaking the build on my system; I'm surprised nobody else has run into this issue. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3579 8ced0084-cf51-0410-be5f-012b33b47a6e --- .../Src/PowerPC/Interpreter/Interpreter.h | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter.h b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter.h index 4b84dcfa77..4012ab3b5a 100644 --- a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter.h +++ b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter.h @@ -293,21 +293,21 @@ namespace Interpreter void RunTable63(UGeckoInstruction _instCode); // flag helper - inline void Helper_UpdateCR0(u32 _uValue); - inline void Helper_UpdateCR1(double _fValue); - inline void Helper_UpdateCR1(float _fValue); - inline void Helper_UpdateCRx(int _x, u32 _uValue); - inline u32 Helper_Carry(u32 _uValue1, u32 _uValue2); + void Helper_UpdateCR0(u32 _uValue); + void Helper_UpdateCR1(double _fValue); + void Helper_UpdateCR1(float _fValue); + void Helper_UpdateCRx(int _x, u32 _uValue); + u32 Helper_Carry(u32 _uValue1, u32 _uValue2); // address helper - inline u32 Helper_Get_EA (const UGeckoInstruction _inst); - inline u32 Helper_Get_EA_U (const UGeckoInstruction _inst); - inline u32 Helper_Get_EA_X (const UGeckoInstruction _inst); - inline u32 Helper_Get_EA_UX(const UGeckoInstruction _inst); + u32 Helper_Get_EA (const UGeckoInstruction _inst); + u32 Helper_Get_EA_U (const UGeckoInstruction _inst); + u32 Helper_Get_EA_X (const UGeckoInstruction _inst); + u32 Helper_Get_EA_UX(const UGeckoInstruction _inst); // paired helper - float inline Helper_Dequantize(const u32 _Addr, const EQuantizeType _quantizeType, const unsigned int _uScale); - void inline Helper_Quantize (const u32 _Addr, const float _fValue, const EQuantizeType _quantizeType, const unsigned _uScale); + float Helper_Dequantize(const u32 _Addr, const EQuantizeType _quantizeType, const unsigned int _uScale); + void Helper_Quantize (const u32 _Addr, const float _fValue, const EQuantizeType _quantizeType, const unsigned _uScale); // other helper u32 Helper_Mask(int mb, int me);