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

c++ new and delete operator undeclared identifier

I want to use new and delete operators in keil ARM. I got the error "use of undeclared identifier 'new'."

an example of code is :

Z = new double[J2];

I tried to use

 #include <new>

which is located in ARMCC folder in keil. but more errors came up about namespace and ...

Could you please help me. Thanks.

0