Revert "Quality-of-Life Improvements"

This commit is contained in:
ddutchie 2024-03-15 22:26:16 +00:00
parent e1538413e9
commit 5d8f3f7cb1
128 changed files with 1530 additions and 499 deletions

View file

@ -12,7 +12,8 @@
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 {};