Skip to content

Commit

Permalink
fix(webserver): fix cpp enum warning (#1824)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys authored Apr 11, 2024
1 parent f852da9 commit aef123d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/tabby-webserver/src/schema/analytic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub enum Language {
Ruby,
CSharp,
C,
CPP,
Cpp,
Solidity,
Other,
}
Expand All @@ -48,7 +48,7 @@ impl Language {
Language::Ruby => vec!["ruby"],
Language::CSharp => vec!["csharp"],
Language::C => vec!["c"],
Language::CPP => vec!["cpp"],
Language::Cpp => vec!["cpp"],
Language::Solidity => vec!["solidity"],
Language::Other => vec!["other"],
}
Expand Down

0 comments on commit aef123d

Please sign in to comment.