[Issue 996] Error in doc on implicit conversion between pointer and array

2010-06-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=996


Don clugd...@yahoo.com.au changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||clugd...@yahoo.com.au
 Resolution||FIXED


--- Comment #8 from Don clugd...@yahoo.com.au 2010-06-18 12:06:23 PDT ---
Fixed in phobos commit 1663. Don't know how this one stuck around for so long.

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


[Issue 996] Error in doc on implicit conversion between pointer and array

2009-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=996


Sobirari Muhomori ma...@pochta.ru changed:

   What|Removed |Added

   Keywords|patch   |




--- Comment #5 from Sobirari Muhomori ma...@pochta.ru  2009-07-02 02:12:53 
PDT ---
ha-ha, the patch keyword is for bugs that have patch fixing them

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


[Issue 996] Error in doc on implicit conversion between pointer and array

2009-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=996


Christian Kamm kamm-removet...@incasoftware.de changed:

   What|Removed |Added

   Keywords||patch




--- Comment #6 from Christian Kamm kamm-removet...@incasoftware.de  
2009-07-02 02:46:42 PDT ---
I honestly think it'd take longer for Walter to look at, download and apply a
'real patch' than for him to open arrays.dd and add the .ptr to lines 148/149
manually.

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


[Issue 996] Error in doc on implicit conversion between pointer and array

2009-07-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=996





--- Comment #7 from Sobirari Muhomori ma...@pochta.ru  2009-07-02 02:53:20 
PDT ---
The same bug is in the string section: A pointer to a char can be generated.

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


[Issue 996] Error in doc on implicit conversion between pointer and array

2009-06-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=996


Christian Kamm kamm-removet...@incasoftware.de changed:

   What|Removed |Added

   Keywords||patch
 CC||kamm-removet...@incasoftwar
   ||e.de




--- Comment #4 from Christian Kamm kamm-removet...@incasoftware.de  
2009-06-30 10:42:53 PDT ---
Marking with patch, since this fix is trivial:

change

p = q;
p = s;
p = a;

to

p = q;
p = s.ptr;
p = a.ptr;

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


[Issue 996] Error in doc on implicit conversion between pointer and array

2009-03-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=996


s...@iname.com changed:

   What|Removed |Added

 CC||s...@iname.com
URL|http://www.digitalmars.com/d|http://www.digitalmars.com/d
   |/2.0/arrays.html|/1.0/arrays.html
  Component|DMD |www.digitalmars.com
   Keywords||rejects-valid
 OS/Version|Linux   |All
   Platform|PC  |All




--- Comment #3 from s...@iname.com  2009-03-06 18:56 ---
This bug is filed against a D1 version, so surely the URL given should be to
the D1 docs.  Also correcting platform and component.


--