Re: levenshteinDistanceAndPath Source bug

2011-01-11 Thread Jesse Phillips
Andrei Alexandrescu Wrote: > Fixed and readded unittest: > > http://www.dsource.org/projects/phobos/changeset/2315 > http://www.dsource.org/projects/phobos/changeset/2316 > > To post bugs, you may want to go to http://d.puremagic.com/issues. What > you post there will automatically appear in di

Re: levenshteinDistanceAndPath Source bug

2011-01-11 Thread Andrei Alexandrescu
On 1/11/11 5:28 PM, tsukikage wrote: tsukikage wrote: Hello, there is a bug at std.algorithm source. dsource,org's source: 4120 levenshteinDistanceAndPath(alias equals = "a == b", Range1, Range2) 4121 (Range1 s, Range2 t) 4122 if (isForwardRange!(Range1) && isForwardRange!(Range2)) 4123 { 4124

Re: levenshteinDistanceAndPath Source bug

2011-01-11 Thread tsukikage
tsukikage wrote: Hello, there is a bug at std.algorithm source. dsource,org's source: 4120 levenshteinDistanceAndPath(alias equals = "a == b", Range1, Range2) 4121 (Range1 s, Range2 t) 4122 if (isForwardRange!(Range1) && isForwardRange!(Range2)) 4123 { 4124 Leve

levenshteinDistanceAndPath Source bug

2011-01-11 Thread tsukikage
Hello, there is a bug at std.algorithm source. dsource,org's source: 4120levenshteinDistanceAndPath(alias equals = "a == b", Range1, Range2) 4121(Range1 s, Range2 t) 4122if (isForwardRange!(Range1) && isForwardRange!(Range2)) 4123{ 4124Levenshtein!(Range, binaryFun