From 82cd67b9313f249e12ee4fd248a40db9dc6b4a07 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sat, 14 Dec 2024 12:52:42 -0500 Subject: WARP: Run `cargo fmt` --- plugins/warp/src/cache.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'plugins/warp/src/cache.rs') diff --git a/plugins/warp/src/cache.rs b/plugins/warp/src/cache.rs index f39bceb2..8111ca51 100644 --- a/plugins/warp/src/cache.rs +++ b/plugins/warp/src/cache.rs @@ -28,7 +28,9 @@ pub fn register_cache_destructor() { pub static mut CACHE_DESTRUCTOR: CacheDestructor = CacheDestructor; #[allow(static_mut_refs)] // SAFETY: This can be done as the backing data is an opaque ZST. - unsafe { CACHE_DESTRUCTOR.register() }; + unsafe { + CACHE_DESTRUCTOR.register() + }; } pub fn cached_function_match(function: &BNFunction, f: F) -> Option -- cgit v1.3.1