I think I am clear on the difference between delete and delete []. The question I am asking here is: sometimes I do have typo and use the wrong one. Then it may or may not crash and normally ends up with hours of debugging.
I wish gcc can detect and give warning on possible misuage on a few simplest cases. I still have to use "new float[size]" from time to time because of legacy fuctions that I need to call, so I am more interested in find an error checking tool to catch part of these mistakes.
new float[size]. Usestd:array<float>orstd::vector<float>. – ecatmur Aug 16 '12 at 21:55new[]. There'svectorfor that (in almost any case). – eq- Aug 16 '12 at 21:55neweither. Usestd::make_shared– Peter Wood Aug 16 '12 at 22:16