[Issue 2588] New: std.signals should not use 'length' stealth keyword in indexing

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Jan 16 11:22:05 PST 2009


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

           Summary: std.signals should not use 'length' stealth keyword in
                    indexing
           Product: D
           Version: 1.037
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: wbaxter at gmail.com


Around line 182 this line appears in std.signals:
                slots[slots_idx + 1 .. length] = null;

This should be changed to:
                slots[slots_idx + 1 .. $] = null;


Or it will fail to compile when Signal is mixed into any class that defines a
.length member.

Oh, and that usage of 'length' should be killed entirely because it's just a
bad idea, as has been discussed before.


-- 



More information about the Digitalmars-d-bugs mailing list