diff options
| author | 2019-11-03 08:25:37 +0100 | |
|---|---|---|
| committer | 2019-11-03 08:25:37 +0100 | |
| commit | a81987a7cb9c4a42bdbaff1e32ce1ba2d8264f5c (patch) | |
| tree | 04976dbac38caf289561b9fd9cefbb0f160c5b3c /src/common/bit_field.h | |
| parent | Merge pull request #3058 from FearlessTobi/port-4948 (diff) | |
| download | yuzu-a81987a7cb9c4a42bdbaff1e32ce1ba2d8264f5c.tar.gz yuzu-a81987a7cb9c4a42bdbaff1e32ce1ba2d8264f5c.tar.xz yuzu-a81987a7cb9c4a42bdbaff1e32ce1ba2d8264f5c.zip | |
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.
Diffstat (limited to 'src/common/bit_field.h')
| -rw-r--r-- | src/common/bit_field.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h index 902e668e3..8131d1f95 100644 --- a/src/common/bit_field.h +++ b/src/common/bit_field.h | |||
| @@ -168,11 +168,11 @@ public: | |||
| 168 | constexpr BitField(BitField&&) noexcept = default; | 168 | constexpr BitField(BitField&&) noexcept = default; |
| 169 | constexpr BitField& operator=(BitField&&) noexcept = default; | 169 | constexpr BitField& operator=(BitField&&) noexcept = default; |
| 170 | 170 | ||
| 171 | constexpr FORCE_INLINE operator T() const { | 171 | constexpr operator T() const { |
| 172 | return Value(); | 172 | return Value(); |
| 173 | } | 173 | } |
| 174 | 174 | ||
| 175 | constexpr FORCE_INLINE void Assign(const T& value) { | 175 | constexpr void Assign(const T& value) { |
| 176 | storage = (static_cast<StorageType>(storage) & ~mask) | FormatValue(value); | 176 | storage = (static_cast<StorageType>(storage) & ~mask) | FormatValue(value); |
| 177 | } | 177 | } |
| 178 | 178 | ||