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 31d2f07 commit 8ba7514Copy full SHA for 8ba7514
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