mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
serialization.hpp: Fixes
This commit is contained in:
parent
696be6aacd
commit
0628a5d931
7 changed files with 68 additions and 48 deletions
|
@ -520,6 +520,9 @@ concept SignedInt = (std::is_signed_v<std::common_type_t<T>> && std::is_integral
|
|||
template <typename T>
|
||||
concept FPInt = std::is_floating_point_v<std::common_type_t<T>> || std::is_same_v<std::common_type_t<T>, f16>;
|
||||
|
||||
template <typename T>
|
||||
concept Integral = std::is_integral_v<std::common_type_t<T>> || std::is_same_v<std::common_type_t<T>, u128> || std::is_same_v<std::common_type_t<T>, s128>;
|
||||
|
||||
template <typename T>
|
||||
constexpr T min_v;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue