summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp4
1 files changed, 2 insertions, 2 deletions
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;
}