We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8bc0d4 commit 03db199Copy full SHA for 03db199
rust-cuda-derive/src/kernel/wrapper/config.rs
@@ -20,7 +20,7 @@ impl syn::parse::Parse for KernelConfig {
20
let args: syn::Ident = input.parse()?;
21
let _comma: syn::token::Comma = input.parse()?;
22
let ptx: syn::Ident = input.parse()?;
23
- let _comma: Option<syn::Ident> = input.parse()?;
+ let _comma: Option<syn::token::Comma> = input.parse()?;
24
let _gt_token: syn::token::Gt = input.parse()?;
25
let _for: syn::token::For = input.parse()?;
26
let launcher: syn::Ident = input.parse()?;
0 commit comments