An attempt to remove dangling pointers in C++

Have you ever had any dangling pointers or references in your application? If so, this article will open a discussion about how to try to remove them from your application. A bit of Context As many of you may have heard, during the last months there were some discussions about memory-safe languages and governmental organizations […]

safety (, , , , )

Stop using bool in C++ for function parameters !

Introduction This article deals with the use of bool in C++. Should we use it or not? That is the question we will try to answer here. However, this is more of an open discussion than a coding rule. First of all, what is the bool type? A boolean variable is a variable that can […]

C++ (, , )
Scroll Top