I am trying to run the constructor/default initializer of a class on a specific memory location.
I am trying to use pooling so I have allocated memory (with malloc) for the object and I have the address of where I would like to go.
I just don’t know how to run the constructor of the object on that void* location.
Is this possible?