diff options
Diffstat (limited to 'helix-core/src/diagnostic.rs')
-rw-r--r-- | helix-core/src/diagnostic.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/helix-core/src/diagnostic.rs b/helix-core/src/diagnostic.rs index 0ab7b645..e08a71e7 100644 --- a/helix-core/src/diagnostic.rs +++ b/helix-core/src/diagnostic.rs @@ -1,5 +1,4 @@ -#[cfg_attr(feature = "debug", derive(Debug))] -#[derive(Eq, PartialEq)] +#[derive(Debug, Eq, PartialEq)] pub enum Severity { Error, Warning, @@ -7,13 +6,13 @@ pub enum Severity { Hint, } -#[cfg_attr(feature = "debug", derive(Debug))] +#[derive(Debug)] pub struct Range { pub start: usize, pub end: usize, } -#[cfg_attr(feature = "debug", derive(Debug))] +#[derive(Debug)] pub struct Diagnostic { pub range: Range, pub line: usize, |