[ox/std] Cleanup

This commit is contained in:
Gary Talent 2019-03-17 03:05:00 -05:00
parent e0605edb6e
commit cf7ba595aa

View File

@ -99,11 +99,11 @@ struct UnsignedType<64> {
using type = uint64_t;
};
template<std::size_t bytes>
using Int = typename SignedType<bytes>::type;
template<std::size_t bits>
using Int = typename SignedType<bits>::type;
template<std::size_t bytes>
using Uint = typename UnsignedType<bytes>::type;
template<std::size_t bits>
using Uint = typename UnsignedType<bits>::type;
template<typename T>
using Signed = Int<sizeof(T) * 8>;