clean up layout dir

This commit is contained in:
iris committed 2025-12-07 14:45:54 -05:00
1 parent c99d466b75
commit 7b3a79b1b0
10 files changed
+42 -102

No files matched your search

+2
View File
@@ -10,6 +10,7 @@ impl RefCounter {
pub fn new() -> Self {
Self(Arc::new(0.into()))
}
#[allow(unused)]
pub fn refs(&self) -> u32 {
self.0.load(Ordering::Acquire)
}
@@ -17,6 +18,7 @@ impl RefCounter {
let refs = self.0.fetch_sub(1, Ordering::Release);
refs == 0
}
#[allow(unused)]
pub fn quiet_clone(&self) -> Self {
Self(self.0.clone())
}