Change the 'result_type' from unsigned to 'uint_fast32_t'. This eliminates truncation warnings on Linux

llvm-svn: 174669
This commit is contained in:
Marshall Clow 2013-02-07 22:12:02 +00:00
parent 64ff6c70da
commit b6e5f854f5
1 changed files with 1 additions and 1 deletions

View File

@ -2764,7 +2764,7 @@ class __rs_default
__rs_default();
public:
typedef unsigned result_type;
typedef uint_fast32_t result_type;
static const result_type _Min = 0;
static const result_type _Max = 0xFFFFFFFF;