new (TheArray[x] + num) object(...); // warning kaboom
Found simpler work-around for the above issue: new (*(TheArray+x) + num) object(...); // okay
new (TheArray[x] + num) object(...); // warning kaboom
Found simpler work-around for the above issue: new (*(TheArray+x) + num) object(...); // okay