Recent Comments
- Carl Cubillas on Prism vs. Caliburn.Micro
- Katia on The Chance that 42 is the Meaning of Life
- Urs Enzler on The next 2 steps on bbv’s Agile journey
- Thomas Weingartner on The next 2 steps on bbv’s Agile journey
- Marco Amendola on Caliburn.Micro – Introduction
Category Archives: C++
Memory errors are among the most difficult bugs to detect because they don’t seem to cause any outward problems until it is too late. A memory leak can cause an out of memory issue, and further calls to malloc or … Continue reading
In C++, unit tests are ideal for ensuring correct functionality. But how do you make sure you don’t have memory leaks in your code, leaks that eventually cause your application to crash when it runs out of memory? Unit tests … Continue reading
Posted in C++
Tagged Memory Leak Detection, Unit Testing, Unmanaged C++, Visual Studio
Leave a comment

