Skip to content

Commit

Permalink
Fix #31 -- forgot to remove a @safe tag on a template.
Browse files Browse the repository at this point in the history
  • Loading branch information
schveiguy committed Jun 28, 2020
1 parent d38b289 commit 0974b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/iopipe/bufpipe.d
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ private struct ArrayCastPipe(Chain, T) if(isIopipe!(Chain) && isDynamicArray!(Wi
*
* Returns: New pipe chain with new array type.
*/
auto arrayCastPipe(T, Chain)(Chain c) @safe if(isIopipe!(Chain) && isDynamicArray!(WindowType!(Chain)))
auto arrayCastPipe(T, Chain)(Chain c) if(isIopipe!(Chain) && isDynamicArray!(WindowType!(Chain)))
{
static if(is(typeof(c.window[0]) == T))
return c;
Expand Down

0 comments on commit 0974b19

Please sign in to comment.