Technical requirements
Clang has support for some of the features of the C++ standard following C++20, informally referred to as C++2b. You can use Clang in C++2b mode with the -std=c++2b
option, but you can use the g++ compiler with the -std=c++2a
option to compile the examples throughout this chapter.
You can find the source files used in this chapter at https://github.com/PacktPublishing/Expert-C-2nd-edition.