Fix some compiler warnings.

This commit is contained in:
Nathan Vegdahl 2019-06-29 08:41:11 +09:00
parent 4ef376dc89
commit 14b16896ac
2 changed files with 0 additions and 3 deletions

View File

@ -11,7 +11,6 @@
#![allow(clippy::needless_range_loop)] #![allow(clippy::needless_range_loop)]
#![allow(clippy::excessive_precision)] #![allow(clippy::excessive_precision)]
#[macro_use]
extern crate lazy_static; extern crate lazy_static;
mod accel; mod accel;

View File

@ -12,8 +12,6 @@ use crate::{
transform_stack::TransformStack, transform_stack::TransformStack,
}; };
use float4::Bool4;
pub struct Tracer<'a> { pub struct Tracer<'a> {
ray_stack: RayStack, ray_stack: RayStack,
inner: TracerInner<'a>, inner: TracerInner<'a>,