#cpp
Read more stories on Hashnode
Articles with this tag
1. Introduction TL;DR: Local functions are not allowed in C++, but static public member functions of local classes are. We occasionally need to define...
Profiling your code is important if performance is of concern. This is especially true for performance-critical applications in scientific...
When reviewing C/C++ code, we fairly often find variables that are never used. Such unused variables occur for a variety of reasons. In this post, we...