Squelch warnings for now

This commit is contained in:
Nathan Sobo 2023-08-03 21:21:45 -06:00
parent 379652f074
commit 196946cbb6
4 changed files with 15 additions and 9 deletions

View file

@ -1,3 +1,5 @@
#![allow(unused_variables, dead_code)]
use derive_more::{Add, Deref, DerefMut};
use gpui::elements::layout_highlighted_chunks;
use gpui::Entity;
@ -644,7 +646,7 @@ impl Size<Rems> {
}
#[derive(Clone, Default, Debug)]
struct Edges<T> {
pub struct Edges<T> {
top: T,
bottom: T,
left: T,
@ -1498,12 +1500,11 @@ impl View for ViewFn {
#[cfg(test)]
mod tests {
use crate::themes::rose_pine::{self, RosePineThemes};
use super::{
length::{auto, rems},
*,
};
use crate::themes::rose_pine;
use gpui::TestAppContext;
#[gpui::test]