Add support for char32_t to mozilla::IsIntegral. Found in the process of fixing another bug, no bug and r=me as so unbelievably trivial that it can't possibly deserve anything else

--HG--
extra : rebase_source : 457268f5749afbb84c50b86876df121c693a4e8f
This commit is contained in:
Jeff Walden 2018-07-12 02:26:49 -07:00
parent e26f18ecaf
commit 9e8165ad5e

View File

@ -99,6 +99,7 @@ template<> struct IsIntegralHelper<unsigned long long> : TrueType {};
template<> struct IsIntegralHelper<bool> : TrueType {};
template<> struct IsIntegralHelper<wchar_t> : TrueType {};
template<> struct IsIntegralHelper<char16_t> : TrueType {};
template<> struct IsIntegralHelper<char32_t> : TrueType {};
} /* namespace detail */