This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Keil uVision 5 PLACEMENT NEW operator

Hello,

Is it possible to use placement new operator in Keil ? i.e

void *pData = ....; // memory segment having enough space to store A object
A *pA = new (pData) A;

it works with workaround proposed in:

" way to call it just like in C++?