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 7772c8b commit f86ecf9Copy full SHA for f86ecf9
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