From f75e1ab27b74276c756a7853a364072dfacf31c3 Mon Sep 17 00:00:00 2001 From: hamidreza kalbasi Date: Sun, 12 Sep 2021 23:05:17 +0430 Subject: [PATCH] remove dead enum variant --- ra-wasm/src/return_types.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/ra-wasm/src/return_types.rs b/ra-wasm/src/return_types.rs index f5cce52..a712ab4 100644 --- a/ra-wasm/src/return_types.rs +++ b/ra-wasm/src/return_types.rs @@ -39,11 +39,9 @@ pub struct Highlight { pub range: Range, } -#[allow(dead_code)] #[derive(Serialize_repr)] #[repr(u8)] pub enum InlayHintType { - Other = 0, Type = 1, Parameter = 2, }