[libc-commits] [libc] [llvm] [libc] Remove UB specializations of type traits for `BigInt` (PR #84035)
via libc-commits
libc-commits at lists.llvm.org
Tue Mar 5 08:22:29 PST 2024
================
@@ -43,13 +43,20 @@ struct BigInt {
static_assert(is_integral_v<WordType> && is_unsigned_v<WordType>,
"WordType must be unsigned integer.");
+ using word_type = WordType;
----------------
lntue wrote:
Will making these type aliases `word_t`, `unsigned_t`, and `signed_t` conflict with anything? B/c writing them all out makes them look like variable names.
https://github.com/llvm/llvm-project/pull/84035
More information about the libc-commits
mailing list