Skip to content

Commit

Permalink
Merge pull request #4708 from 9il/pif
Browse files Browse the repository at this point in the history
remove pragma(inline, false)
  • Loading branch information
dnadlinger authored Aug 3, 2016
2 parents dab3eda + 15c04be commit ffa804e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions std/experimental/ndslice/slice.d
Original file line number Diff line number Diff line change
Expand Up @@ -3158,7 +3158,6 @@ private enum isStringValue(alias T) = is(typeof(T) : string);

private void _indexAssignKernel(string op, TL, TR)(size_t c, TL* l, TR* r)
{
pragma(inline, false);
do
{
mixin("l[0] " ~ op ~ "= r[0];");
Expand All @@ -3170,7 +3169,6 @@ private void _indexAssignKernel(string op, TL, TR)(size_t c, TL* l, TR* r)

private void _indexAssignValKernel(string op, TL, TR)(size_t c, TL* l, TR r)
{
pragma(inline, false);
do
{
mixin("l[0] " ~ op ~ "= r;");
Expand Down

0 comments on commit ffa804e

Please sign in to comment.