From 1c9bec19993417b1f3b240f2bdb0745aa26c0cb3 Mon Sep 17 00:00:00 2001 From: truebrain Date: Tue, 20 Dec 2011 17:57:56 +0000 Subject: (svn r23640) -Fix: stop using FORCEINLINE (1/3rd of the instances were, the others were still regular inline), but make sure inline is always a 'forced' inline (I am looking at you MSVC) --- src/vehicle_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vehicle_gui.cpp') diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index 81e17e694..006f6278b 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -297,7 +297,7 @@ struct RefitOption { * @param other Compare to this #RefitOption. * @return True if both #RefitOption are different. */ - FORCEINLINE bool operator != (const RefitOption &other) const + inline bool operator != (const RefitOption &other) const { return other.cargo != this->cargo || other.value != this->value; } @@ -307,7 +307,7 @@ struct RefitOption { * @param other Compare to this #RefitOption. * @return True if both #RefitOption are equal. */ - FORCEINLINE bool operator == (const RefitOption &other) const + inline bool operator == (const RefitOption &other) const { return other.cargo == this->cargo && other.value == this->value; } -- cgit v1.2.3-54-g00ecf