We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f876cc commit 3b51e9fCopy full SHA for 3b51e9f
src/tools/error_index_generator/main.rs
@@ -22,7 +22,7 @@ macro_rules! register_diagnostics {
22
pub fn error_codes() -> Vec<(&'static str, Option<&'static str>)> {
23
let mut errors: Vec<(&str, Option<&str>)> = vec![
24
$((stringify!($error_code), Some($message)),)+
25
- $((stringify!($undocumented), None),)+
+ $((stringify!($undocumented), None),)*
26
];
27
errors.sort();
28
errors
0 commit comments