Fix missing ;

This commit is contained in:
Gabriel Majeri 2017-06-20 07:23:37 +03:00
parent 880b3d395f
commit b5e5841754

View File

@ -469,7 +469,7 @@ mod tests {
let (device, _) = gfx_dev_and_queue!();
unsafe {
let _ = UnsafeBuffer::new(device, 0, BufferUsage::all(), Sharing::Exclusive::<Empty<_>>, SparseLevel::none())
let _ = UnsafeBuffer::new(device, 0, BufferUsage::all(), Sharing::Exclusive::<Empty<_>>, SparseLevel::none());
};
}
}