mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 18:45:55 +00:00
Declare base_uints with using statements
This commit is contained in:
@@ -405,9 +405,9 @@ public:
|
|||||||
void zero () { *this = beast::zero; }
|
void zero () { *this = beast::zero; }
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef base_uint<128> uint128;
|
using uint128 = base_uint<128>;
|
||||||
typedef base_uint<160> uint160;
|
using uint160 = base_uint<160> ;
|
||||||
typedef base_uint<256> uint256;
|
using uint256 = base_uint<256> ;
|
||||||
|
|
||||||
template <std::size_t Bits, class Tag>
|
template <std::size_t Bits, class Tag>
|
||||||
inline int compare (
|
inline int compare (
|
||||||
|
|||||||
Reference in New Issue
Block a user