April 7th, 2025

Pure Virtual C++ 2025 Talks Announced

Sy Brand
C++ Developer Advocate

Pure Virtual C++ is our free, one-day, virtual conference for the whole C++ community. This year, it is running on the 30th April. We’re pleased to announce four of our five live sessions for the day:

  • Welcome to v1.0 of the meta::[[verse]]! with Inbal Levi
  • Proxy: Next Generation Polymorphism with Mingxin Wang
  • Making unfamiliar C++ code familiar with GitHub Copilot with Sinem Akinci
  • C++ Modules Myth Busting with Cameron DaCamara

You can find abstracts for all the talks and register for the conference with the button below.

Author

Sy Brand
C++ Developer Advocate

Sy Brand is Microsoft’s C++ Developer Advocate. Their background is in compilers and debuggers for embedded accelerators, but they’re also interested in generic library design, metaprogramming, functional-style C++, undefined behaviour, and making our communities more inclusive and welcoming.

0 comments

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }