From a81987a7cb9c4a42bdbaff1e32ce1ba2d8264f5c Mon Sep 17 00:00:00 2001 From: Tobias Date: Sun, 3 Nov 2019 08:25:37 +0100 Subject: [PATCH] common/bit_field: Remove FORCE_INLINE calls See bunneis comment here https://github.com/citra-emu/citra/pull/4629#discussion_r258533167. They were supposed to be removed by him, but he missed them. --- src/common/bit_field.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/bit_field.h b/src/common/bit_field.h index 902e668e33..8131d1f958 100644 --- a/src/common/bit_field.h +++ b/src/common/bit_field.h @@ -168,11 +168,11 @@ public: constexpr BitField(BitField&&) noexcept = default; constexpr BitField& operator=(BitField&&) noexcept = default; - constexpr FORCE_INLINE operator T() const { + constexpr operator T() const { return Value(); } - constexpr FORCE_INLINE void Assign(const T& value) { + constexpr void Assign(const T& value) { storage = (static_cast(storage) & ~mask) | FormatValue(value); }