diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 33bda3f..27b33ba 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10475,7 +10475,9 @@ When concepts become available, we can (and should) be more specific about the t ##### Example (C++17) - auto [ quotient, remainder ] = div(123456, 73); // break out the members of the div_t result + std::set values; + // ... + auto [ position, newly_inserted ] = values.insert(5); // break out the members of the std::pair ##### Enforcement