Update wide_integer_impl.h

This commit is contained in:
alexey-milovidov 2022-01-03 16:43:58 +03:00 committed by GitHub
parent 9e7102542b
commit 6e9684149b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1026,6 +1026,8 @@ constexpr integer<Bits, Signed>::integer(std::initializer_list<T> il) noexcept
items[i] = *it;
++it;
}
else
items[i] = 0;
}
}
}