Releasing the 5th Track for Meeting C++ 2025
Meeting C++ hosts a new track in Berlin this year, offering 4 tracks onsite
Releasing the 5th Track for Meeting C++ 2025
by Jens Weller
from the article:
I am excited to announce that with the recent changes to the schedule, Meeting C++ 2025 has now 5 tracks: 4 onsite and 1 online track. This new track is possible thanks to better funding from sponsors and exhibitors enabling even more C++ content at Meeting C++ in Berlin.
For onsite attendees there is a new batch of hotel tickets and team tickets available. The current hotel ticket batch sells until Mid October.
These are the new talks which are now at the conference:
New talks at Meeting C++ 2025100 BC (binary compatibility) - Marc Mutz
Case Study: Purging Undefined Behavior and Intel Assumptions in a Legacy Codebase - Roth Michaels
Type Traits without Compiler Intrinsics – The Promise of Static Reflection - Andrei Zissu
Back to the basics: Namespaces 101 - Sandor Dargo
Building Bridges: C++ Interop., Foreign Function Interfaces & ABI - Gareth Williamson
Instruction Level Parallelism and Software Performance - Ivica Bogosavljevic
Real-time Safety — Guaranteed by the Compiler! - Anders Schau Knatten
Missing (and future?) C++ range concepts - Jonathan Müller
From Introductory to Advanced C++ - Learning Guidelines - Slobodan Dmitrovic
MISRA C++ 2023 - Richard Kaiser

A long-delayed dream finally came true: after years of near-misses and lessons learned (“better to be invited than sent”), I made it to CppCon—and it was bigger, louder, and more inspiring than I imagined. In this recap I share the vibe of the week, five standout talks and ideas, a few notes from my own session, and links to recordings as they appear.
Structured binding is a C++17 feature that allows you to bind multiple variables to the elements of a structured object, such as a tuple or struct. This can make your code more concise and easier to read, especially when working with complex data structures. On this blog, we already covered this functionality, but we’ll talk about some good C++26 additions and real code use cases.