Skip to content

Commit b64c501

Browse files
authored
Fix deprecation warning in simd_dispatch (#103)
This wasn't updated past #99
1 parent 1cab0a0 commit b64c501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fearless_simd/src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/// fn sigmoid(level: Level, x: &[f32], out: &mut [f32]) { /* ... */ }
4141
/// ```
4242
#[macro_export]
43-
#[deprecated = "use dispatch!(level, function) instead"]
43+
#[deprecated = "use dispatch!(level, simd => operation) instead"]
4444
macro_rules! simd_dispatch {
4545
(
4646
$( #[$meta:meta] )* $vis:vis

0 commit comments

Comments
 (0)