Summary
In this second episode of the "Learning Modern C++" series, Jason demonstrates how to set up a proper Hello World project with modern C++ practices. He configures Visual Studio with Clang Power Tools, sets up clang-tidy with comprehensive checks, and enables cppcheck with its most rigorous settings. The episode shows how these tools can automatically identify and fix non-standard practices, such as replacing the deprecated stdio.h with cstdio and warning against using namespace directives.
Related C++ Standard Sections
This episode covers topics found in these sections of the C++ standard:
-
[ostream.manip]40% match