Hi!

Created application is working toooo slow, looks like there are a lot of memory leaks, there are a lot of pointers. So, please, can you advice some effective tool for run-time errors and memory leaks detection in Visual Studio C++?

Recommended Answers

All 3 Replies

use std::auto_ptr instead of raw pointers. Use boost's smart pointers
instead of raw pointers. Make sure every call to new is matched with a call
to delete.

Hi!

Created application is working toooo slow, looks like there are a lot of memory leaks, there are a lot of pointers. So, please, can you advice some effective tool for run-time errors and memory leaks detection in Visual Studio C++?

I think you search deleaker....
better late than never:icon_neutral:

Valgrind, VLD, MemCheck...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.