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 4fce3d2 commit 2b20d82Copy full SHA for 2b20d82
crates/spirv-std/macros/src/lib.rs
@@ -265,7 +265,9 @@ pub fn gpu_only(_attr: TokenStream, item: TokenStream) -> TokenStream {
265
#[cfg(not(target_arch="spirv"))]
266
#[allow(unused_variables)]
267
#(#attrs)* #vis #sig_cpu {
268
- unimplemented!(concat!("`", stringify!(#fn_name), "` is only available on SPIR-V platforms."))
+ unimplemented!(
269
+ concat!("`", stringify!(#fn_name), "` is only available on SPIR-V platforms.")
270
+ )
271
}
272
273
#[cfg(target_arch="spirv")]
0 commit comments