From 9a61b8d77dcd30b49b2ddcb31409926a86d6d898 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 14 Jan 2015 08:49:04 -0800 Subject: [PATCH] Declare base_uints with using statements --- src/ripple/basics/base_uint.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ripple/basics/base_uint.h b/src/ripple/basics/base_uint.h index a8d90f60e2..5e87c2a146 100644 --- a/src/ripple/basics/base_uint.h +++ b/src/ripple/basics/base_uint.h @@ -405,9 +405,9 @@ public: void zero () { *this = beast::zero; } }; -typedef base_uint<128> uint128; -typedef base_uint<160> uint160; -typedef base_uint<256> uint256; +using uint128 = base_uint<128>; +using uint160 = base_uint<160> ; +using uint256 = base_uint<256> ; template inline int compare (