Browse Source
Merge pull request #3060 from FearlessTobi/patch-1
common/bit_field: Remove FORCE_INLINE calls
pull/15/merge
Mat M
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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<StorageType>(storage) & ~mask) | FormatValue(value); |
|
|
|
} |
|
|
|
|
|
|
|
|