Posts by this author

Apr 26, 2022
Post comments count0
Post likes count0

Pure Virtual C++ 2022 is Today

Pure Virtual C++ 2022 is today at 14:00 UTC! Join us on Learn TV for a free one-day virtual conference for the whole C++ community. You can find the schedule here.  

AnnouncementC++Pure Virtual C++
Apr 22, 2022
Post comments count0
Post likes count0

Pure Virtual C++ 2022 Pre-Conference Sessions Available

Our pre-conference sessions for Pure Virtual C++ 2022 are now online. Find them here, and hope to see you at the main event on 26th April! Session list: There's one session on Visual Studio for Unreal Engine and Game Developers which will be uploaded soon.

C++Pure Virtual C++
Apr 13, 2022
Post comments count0
Post likes count0

Pure Virtual C++ 2022 Schedule Available

Pure Virtual C++ 2022 is a free, one-day virtual conference for the whole C++ community. The schedule is now available. You can find the full set of abstracts, alongside calendar files to download on the website. All times UTC on the 26th April. Yes, I know the times look a bit weird, it'll work out on the day! Lo...

C++AnnouncementPure Virtual C++
Apr 8, 2022
Post comments count1
Post likes count0

Sign Up for the Pure Virtual C++ 2022 Conference

In the last couple of years we have run Pure Virtual C++, a free one-day virtual conference for the whole C++ community. This month we're doing it again! Sign-up for free on the website to be the first to hear about our program schedule, access our extra on-demand C++ demos, and get more virtual surprises. The live event will run April 26th ...

C++AnnouncementPure Virtual C++
Mar 1, 2022
Post comments count1
Post likes count0

Execution and Static Analysis Support for MSVC on Compiler Explorer

Compiler Explorer is a popular resource for visualizing the assembly output of various compilers, trying out different compiler versions and flags, and testing many popular libraries. We're pleased to announce that, as of today, code execution and static analysis are now available for MSVC on Compiler Explorer. Execution on CE has been one of ou...

Announcement
Oct 25, 2021
Post comments count0
Post likes count0

Microsoft C++ Team at CppCon 2021

The Microsoft C++ team has an exciting lineup of sessions at CppCon 2021. Many of us will also be present at our team’s booth in the main hall for the first two days of the conference. Come say hi and let us know if you have any questions about our talks, products, or anything else! You can also join the #visual_studio channel on the CppCon Dis...

C++
May 3, 2021
Post comments count0
Post likes count0

Pure Virtual C++ 2021 is Today

Pure Virtual C++, a free one-day virtual conference for the whole C++ community, is starting today (May 3rd) at 14:30 UTC. You can watch it and interact with the speakers at Learn TV. There'll be sessions on C++20 modules, CMake, vcpkg, and code analysis. All of our pre-conference demos, including what's new in C++20 support in MSVC, are now...

C++Pure Virtual C++
Apr 20, 2021
Post comments count8
Post likes count0

Pure Virtual C++ 2021 Schedule Available

The schedule for Pure Virtual C++ 2021 is now live on the event website. Remember to sign up to be the first to access our extra on-demand C++ demos and get more virtual surprises. Schedule All times are on Monday 3rd May 2021 UTC. Abstracts and speaker bios are available on the website.

C++Pure Virtual C++
Apr 6, 2021
Post comments count5
Post likes count0

Sign Up for the Pure Virtual C++ 2021 Conference

Last year we ran the first Pure Virtual C++, a free one-day virtual conference for the whole C++ community. This May we're doing it again! Sign-up for free on the website to be the first to hear about our program schedule, access our extra on-demand C++ demos, and get more virtual surprises. The live event will run May 3rd 14:30-17:30 UTC on...

C++Announcement
Feb 4, 2021
Post comments count8
Post likes count4

Abbreviated Function Templates and Constrained Auto

Declaring function templates in C++ has always been quite verbose. C++20 added a new way of doing so that is more terse and more consistent with lambdas: abbreviated function templates. This short post will show how to use this syntax and how it applies to C++20 concepts. Abbreviated Function Templates C++11 introduced lambdas, which look like th...

C++