remove "Known problems" of verbose_bit_mask

This commit is contained in:
lapla-cogito 2025-02-03 00:12:07 +09:00
parent 88a00a87fa
commit af18dce76b
No known key found for this signature in database
GPG key ID: B39C71D9F127FF9F

View file

@ -265,9 +265,6 @@ declare_clippy_lint! {
/// `x.trailing_zeros() >= 4` is much clearer than `x & 15
/// == 0`
///
/// ### Known problems
/// llvm generates better code for `x & 15 == 0` on x86
///
/// ### Example
/// ```no_run
/// # let x = 1;