We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71114ee commit 3f8ca15Copy full SHA for 3f8ca15
src/html/htmlcompare_cli.rs
@@ -17,7 +17,8 @@ fn parse(in_path: &Path) -> Result<Part> {
17
let mut input = String::new();
18
File::open(in_path)?.read_to_string(&mut input)?;
19
20
- let device = svd_parser::parse_with_config(&input, &Config::default().expand(true))?;
+ let device =
21
+ svd_parser::parse_with_config(&input, &Config::default().expand(true).ignore_enums(true))?;
22
let name = in_path
23
.file_stem()
24
.unwrap()
0 commit comments