http://d.puremagic.com/issues/show_bug.cgi?id=9071


monarchdo...@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|nob...@puremagic.com        |monarchdo...@gmail.com
           Severity|enhancement                 |normal


--- Comment #3 from monarchdo...@gmail.com 2012-11-25 05:12:32 PST ---
(In reply to comment #2)
> where do you want the examples. it is pretty long 270 lines.

You can post it in dpaste:
http://dpaste.dzfl.pl/new

An added bonus is that it should show us the exact same compile error you are
getting.

> The problem is a
> combination of the way opSlice doesn't require a specific return type and. the
> recursive nature of sortImpl and that sortImpl assigns slices. 
> 
> 
> algorithm.d:7306
> auto right = r[lessI + 1..r.length];        // here r is still of type Range
>                                       // right is the return type of opSlice
> auto left = r[0..min(lessI, greaterI + 1)]; // same goes for left
> if (right.length > left.length)
> {
>     swap(left, right);
> }
> .sortImpl!(less, ss, Range)(right); // here sortImpl calls itself where right
> is not of type Range
> r = left; // this assignment will fail because the assign operator of Range is
> not required to accept the return type of opSlice

I see. In that case, there is a bit of both issues. Please post your code, I'll
take care of this issue.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to