C++17 additions
Fallthrough, maybe_unused and nodiscard are the three new attributes in C++ 17 that this lesson talks about.
We'll cover the following...
Attributes in C++17
With C++17 we get three more standard attributes:
• [[fallthrough]]
• [[maybe_unused]]
• [[nodiscard]]
Extra Info: The new ...