mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fixed suppressed clippy warnings for #587 - many_single_char_names
This commit is contained in:
parent
d612e875a6
commit
967fd9280b
@ -207,7 +207,7 @@ impl<'a, V: RectRasterableVol<Vox = Block> + ReadVol + Debug>
|
||||
type TranslucentPipeline = FluidPipeline;
|
||||
|
||||
#[allow(clippy::collapsible_if)] // TODO: Pending review in #587
|
||||
#[allow(clippy::many_single_char_names)] // TODO: Pending review in #587
|
||||
#[allow(clippy::many_single_char_names)]
|
||||
#[allow(clippy::needless_range_loop)] // TODO: Pending review in #587
|
||||
#[allow(clippy::or_fun_call)] // TODO: Pending review in #587
|
||||
#[allow(clippy::panic_params)] // TODO: Pending review in #587
|
||||
|
@ -87,7 +87,7 @@ impl Mode {
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::many_single_char_names)] // TODO: Pending review in #587
|
||||
#[allow(clippy::many_single_char_names)]
|
||||
pub fn create_quad(
|
||||
rect: Aabr<f32>,
|
||||
uv_rect: Aabr<f32>,
|
||||
|
@ -67,7 +67,7 @@ impl euc::Interpolate for VsOut {
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[allow(clippy::many_single_char_names)] // TODO: Pending review in #587
|
||||
#[allow(clippy::many_single_char_names)]
|
||||
fn lerp3(a: Self, b: Self, c: Self, x: f32, y: f32, z: f32) -> Self {
|
||||
//a * x + b * y + c * z
|
||||
Self(
|
||||
|
Loading…
Reference in New Issue
Block a user