Skip to content

Commit

Permalink
fix: Missing trait import in macros
Browse files Browse the repository at this point in the history
  • Loading branch information
cvauclair committed Dec 6, 2024
1 parent 16970bc commit 758f621
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rig-core/src/pipeline/parallel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ macro_rules! parallel_internal {
]
munching: []
) => ({
use $crate::pipeline::op::Op;

$crate::parallel_op!($($val),*)
.map(|output| {
($(
Expand Down Expand Up @@ -243,6 +245,7 @@ macro_rules! try_parallel_internal {
]
munching: []
) => ({
use $crate::pipeline::try_op::TryOp;
$crate::parallel_op!($($val),*)
.map_ok(|output| {
($(
Expand Down

0 comments on commit 758f621

Please sign in to comment.