diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-11 02:35:47 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-11 02:35:47 +0200 |
commit | b76ddb7647cbb390cce4143d91a1db171b0fa503 (patch) | |
tree | a6e2e334e82b035923c41458150604dd5fb31d65 /src/common/bit_set.h | |
parent | Added IsUserRegistrationRequestPermitted (diff) | |
parent | Merge pull request #1007 from MerryMage/dynarmic (diff) | |
download | yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.tar yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.tar.gz yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.tar.bz2 yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.tar.lz yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.tar.xz yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.tar.zst yuzu-b76ddb7647cbb390cce4143d91a1db171b0fa503.zip |
Diffstat (limited to 'src/common/bit_set.h')
-rw-r--r-- | src/common/bit_set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bit_set.h b/src/common/bit_set.h index 84e3cbe58..5a197d8c1 100644 --- a/src/common/bit_set.h +++ b/src/common/bit_set.h @@ -96,7 +96,7 @@ static inline int LeastSignificantSetBit(u64 val) { template <typename IntTy> class BitSet { - static_assert(!std::is_signed<IntTy>::value, "BitSet should not be used with signed types"); + static_assert(!std::is_signed_v<IntTy>, "BitSet should not be used with signed types"); public: // A reference to a particular bit, returned from operator[]. |