Remove uses of _UI because Windows is evil and tchar.h #define's it

llvm-svn: 304348
This commit is contained in:
Eric Fiselier
2017-05-31 21:20:18 +00:00
parent bcd3c37f4a
commit 89918caaa7
3 changed files with 113 additions and 111 deletions

View File

@@ -2908,11 +2908,11 @@ struct __log2_imp<0, _Rp>
static const size_t value = _Rp + 1;
};
template <class _UI, _UI _Xp>
template <class _UIntType, _UIntType _Xp>
struct __log2
{
static const size_t value = __log2_imp<_Xp,
sizeof(_UI) * __CHAR_BIT__ - 1>::value;
sizeof(_UIntType) * __CHAR_BIT__ - 1>::value;
};
template<class _Engine, class _UIntType>