heapless icon indicating copy to clipboard operation
heapless copied to clipboard

Heads-up: const_err lint is going away

Open RalfJung opened this issue 3 years ago • 0 comments

This crate has a deny(const_err). That is a no-op in current compilers, const_err is deny-by-default (and has been for years). In the near future, the lint will be turned into a hard error, at which point this crate will fail to build since the deny(warnings) means that the warning due to the removed lint becomes an error.

The deny(const_err) should probably just be removed.

RalfJung avatar Sep 23 '22 13:09 RalfJung