Removing Deprecated Exception Specifications
Understand the removal of deprecated dynamic exception specifications in C++17 and how noexcept replaces them to improve exception handling. Explore the implications of this change on writing clearer and more modern C++ code.
We'll cover the following...
We'll cover the following...
In C++17, exception specification will be part of the type system (as discussed in the next chapter about Language ...