mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-30 16:39:26 +00:00
clippy: env!
invocations can't be b"" literals
Signed-off-by: David Wood <david@davidtw.co>
This commit is contained in:
parent
5a6c4d7d43
commit
a1473721b0
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ impl<'tcx> LateLintPass<'tcx> for StringLitAsBytes {
|
||||||
{
|
{
|
||||||
// Don't lint. Byte strings produce `&[u8; N]` whereas `as_bytes()` produces
|
// Don't lint. Byte strings produce `&[u8; N]` whereas `as_bytes()` produces
|
||||||
// `&[u8]`. This change would prevent matching with different sized slices.
|
// `&[u8]`. This change would prevent matching with different sized slices.
|
||||||
} else {
|
} else if !callsite.starts_with("env!") {
|
||||||
span_lint_and_sugg(
|
span_lint_and_sugg(
|
||||||
cx,
|
cx,
|
||||||
STRING_LIT_AS_BYTES,
|
STRING_LIT_AS_BYTES,
|
||||||
|
|
Loading…
Reference in a new issue