Skip to content

Commit

Permalink
Likely fix to issue #340. Will test using issue/MR #335/#336 first
Browse files Browse the repository at this point in the history
  • Loading branch information
anyzelman committed Jan 11, 2025
1 parent 55d74ec commit ef5f20f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/graphblas/nonblocking/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ namespace grb {
#endif
for( size_t i = lower_bound; i < upper_bound; ++i ) {
if( !out_is_void && !in_is_void ) {
dst[ i ] = src[ i ];
dst[ i ] = internal::setIndexOrValue< descr, OutputType >( i, src[ i ] );
}
}
}
Expand Down

0 comments on commit ef5f20f

Please sign in to comment.