Hi my dear reader. Long time no see. Last time you’ve heard from me, I was moving to Spring, in order to have a new perspective in development and explore different business sectors. You can find the story here. It has been weeks with no update, so here I am, delivering you one. In this […]
Category: Uncategorized
Why use nullptr over NULL?
Before C++11, people were using the NULL macro, baaack from C. In most compilers, this macro definition is: Duuude, isn’t this problematic? Sure, it is a pointer, but it is pretty obvious that it can be cast to integral types. This can work: What about another problem? Yeah, there is one more. Since NULL is […]