Sharing a first schedule for Meeting C++ 2025 with you
A first schedule for Meeting C++ 2025 is available.
The schedule for Meeting C++ 2025
organized by Jens Weller
From the webpage:
Meeting C++ 2025 is a hybrid conference in Berlin happening from 6th - 8th November. It features Keynotes by Anthony Williams, Frances Bountempo and James McNellis. The program consists of 3 onsite tracks, and one online track.

This change in C++26 tightens the rules around returning references to temporaries — and that’s a good thing. It turns dangerous, bug-prone code into immediate compilation errors, making code safer and easier to reason about. It also reflects a broader trend in modern C++: giving programmers stronger guarantees and better diagnostics, even at the cost of breaking some old patterns.
Constexpr has been around for a while now, but many don’t fully understand its subtleties. Andreas Fertig explores its use and when a constexpr expression might not be evaluated at compile time.
In C++, the presence of a user-declared (but not explicitly deleted) copy constructor is enough for the type to be considered copy-constructible by traits like
While C++ doesn’t have native syntax for returning multiple values like some other languages, modern C++ offers powerful tools to accomplish the same goal. With features like