On Tuesday, May 15, 2012 15:05:30 Joseph Rushton Wakeling wrote: > On 15/05/12 11:43, Jonathan M Davis wrote: > > No. _Never_ use delete. It's going to be deprecated. > > What if you turn the GC off?
If you want to be doing manuabl memory management, then you use malloc and free. new _always_ uses the GC. delete is going to be _removed from the language_, so it's not an option. - Jonathan M Davis