Search Results

1
vote

when should you use ‘friend’ in c++ ?

We had an interesting issue come up at a company I previously worked at where we used friend to decent affect. I worked in our framework department we created a basic engine level system over our …
3
votes

C++ deleting a pointer to a pointer

I agree with Jason Cohen though we can be a bit clearer on the reason for needing to delete your pointers with the loop. For every "new" or dynamic memory allocation there needs to be a "delete" a …