Trip Report: Fall ISO C++ Meeting in Wrocław, Poland -- Jonathan Müller
https://isocpp.org//blog/2024/12/trip-report-fall-iso-cpp-meeting-in-wrocaw-poland-jonathan-mueller
Published: December 20, 2024 17:58
Jonathan Müller attended the fall 2024 meeting of the ISO C++ standardization committee in Wrocław, Poland. This was the fifth meeting for the upcoming C++26 standard and the feature freeze for major C++26 features.
Trip Report: Fall ISO C++ Meeting…
C++ programmer's guide to undefined behavior: part 11 of 11
https://isocpp.org//blog/2024/12/cpp-programmers-guide-to-undefined-behavior-part-11-of-11
Published: December 17, 2024 09:33
Your attention is invited to the 11th part of an e-book on undefined behavior. This is not a textbook, as it's intended for those who are already familiar with C++ programming. It's a kind of C++ programmer's guide to undefined behavior and to its most…
The Puzzle of Trying to Put an Object into a std::optional -- Raymond Chen
https://isocpp.org//blog/2024/12/the-puzzle-of-trying-to-put-an-object-into-a-stdoptional-raymond-chen
Published: December 11, 2024 20:05
The std::optional<T> is a powerful tool for handling optional values, but assigning non-trivial types like Doodad to it can lead to unexpected compilation errors. This post explores why such assignments fail and unpacks the nuances of std::optional and…