Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Aug 17, 2023
1 parent 329e690 commit a91d1fe
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions macro/src/dialect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,7 @@ pub fn generate_dialect(mut input: DialectMacroInput) -> Result<TokenStream, Box
let dialect = dialect_module(&input.name, dialect_def, &keeper)
.map_err(|error| error.add_source_info(keeper.source_info()))?;

Ok(quote! {
#dialect
}
.into())
Ok(quote! { #dialect }.into())
}

fn llvm_config(argument: &str) -> Result<String, Box<dyn Error>> {
Expand Down

0 comments on commit a91d1fe

Please sign in to comment.