I have been looking into custom allocators and I quite often see them using some kind of function to allocate memory. For testing purposes and further educate my self, I tri
To get the constructor to be called you use placement new(Note you can not override placement new). For delete and all the gotchas well the FAQ does a good job of explaining it.