[Issue 5792] Tuple!(real,string) fails

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Mar 28 15:16:40 PDT 2011


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



--- Comment #2 from kennytm at gmail.com 2011-03-28 15:13:14 PDT ---
The 3 lines in reserve() that emit the errors


                GC.removeRange(_data._payload.ptr);
                free(_data._payload.ptr);
                _data._payload = newPayload;


should probably read


                GC.removeRange(_payload.ptr);
                free(_payload.ptr);
                _payload = newPayload;

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


More information about the Digitalmars-d-bugs mailing list