So I am a bit of a n00b and was reading about new, delete, and pointers, and I am certain that I will forget too many deletes over the course of my life. So I was wondering if a macro like the following would be more trouble than it's worth.
#define withObject(ptr, value, BODY) \
{ \
ptr = value; \
BODY \
delete ptr; \
ptr=NULL \
}
Would this macro cause some problems or behave in an unexpected way?
Edit: oops I left off the d on freed. Well thanks everyone for the answers.
newanddelete. – Boaz Yaniv May 6 '11 at 19:23