http://d.puremagic.com/issues/show_bug.cgi?id=4406
Summary: Typo (bug) in std.concurrency
Product: D
Version: D2
Platform: Other
OS/Version: All
Status: NEW
Keywords: patch
Severity: critical
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Simen Kjaeraas <[email protected]> 2010-06-29 06:57:01
PDT ---
Line 609 of trunk std.concurrency contains a typo that makes it not compile:
final void get(T...)( T ops )
{
static assert( T.length );
static if( isImplicitlyConvertible!(T[0], long) )
{
alias TypeTuple!(T[1 .. $]) Ops;
enum timedWait = true;
assert( ops[0] >= 0 );
long period = ops[0];
ops = ops[1 .. $]; // Line 609
}
Lines 609 should instead be:
Ops = ops[1 .. $];
(note capitalization)
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------