mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Derive debug without feature
Note that this also removed those `finish_non_exhaustive()`.
This commit is contained in:
parent
1a3a924634
commit
7cc13fefe9
19 changed files with 36 additions and 61 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue