|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
c++.beta - [bug] dmc 8.50.4n Error: can only delete pointers
Walter,
DMC 8.50.4n fails to compile the code below. Other C++ compilers do
not report a problem.
Arjan Knepper
Stipped down example from boost::test
class test
{
public :
int * value;
operator int * () { return ( value ); }
} p_value;
static void Reset ()
{
delete p_value;
p_value.value = new int;
}
Dec 18 2007
|