[ox/std] Cleanup
This commit is contained in:
parent
e0605edb6e
commit
cf7ba595aa
8
deps/ox/src/ox/std/types.hpp
vendored
8
deps/ox/src/ox/std/types.hpp
vendored
@ -99,11 +99,11 @@ struct UnsignedType<64> {
|
|||||||
using type = uint64_t;
|
using type = uint64_t;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<std::size_t bytes>
|
template<std::size_t bits>
|
||||||
using Int = typename SignedType<bytes>::type;
|
using Int = typename SignedType<bits>::type;
|
||||||
|
|
||||||
template<std::size_t bytes>
|
template<std::size_t bits>
|
||||||
using Uint = typename UnsignedType<bytes>::type;
|
using Uint = typename UnsignedType<bits>::type;
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
using Signed = Int<sizeof(T) * 8>;
|
using Signed = Int<sizeof(T) * 8>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user