mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-03-23 19:28:40 +00:00
fix: CLang fix
This commit is contained in:
@@ -12,8 +12,7 @@
|
||||
|
||||
namespace Common {
|
||||
template <typename VaType, size_t AddressSpaceBits>
|
||||
concept AddressSpaceValid = std::is_unsigned_v<VaType> && sizeof(VaType) * 8 >=
|
||||
AddressSpaceBits;
|
||||
concept AddressSpaceValid = std::is_unsigned_v<VaType> && sizeof(VaType) * 8 >= AddressSpaceBits;
|
||||
|
||||
struct EmptyStruct {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user