Showing results for 2022 - Page 6 of 6 - C++ Team Blog

Apr 8, 2022
1
0

Sign Up for the Pure Virtual C++ 2022 Conference

Sy Brand
Sy Brand

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 31, 2022
1
0

Enhancing Game Developer Productivity with Visual Studio 2022

David Li
David Li

In this blog, we will discuss how much faster you can get to code with speedier C++ IntelliSense ready and opening a file. Learn how search improved with faster with C++ Find All References and indexed Find in Files.

C++Game Development
Mar 17, 2022
8
1

C++ Modules in CMake with Visual Studio

Will Buik
Will Buik

We’ve seen a lot of excitement around C++ modules since we announced support in the Microsoft C++ compiler and Visual Studio. Ever since, the community has been asking us when CMake support was coming. I am happy to announce that Visual Studio 2022 17.2 Preview 2 has experimental support for C++ modules in CMake projects. One caveat for this early ...

C++
Mar 16, 2022
2
0

Visual Studio for remote macOS C++ development

Sinem Akinci
Sinem Akinci

The latest preview version of Visual Studio is now available to download. In this latest release, users wishing to develop cross platform C++ applications for macOS can now make use of Visual Studio’s Linux tools with CMake to target the Mac. There is some setup required on the Mac side to enable the support, but then the Mac is treated just as any...

C++CMake
Mar 10, 2022
4
3

Embedded Software Development in Visual Studio Code

Marc Goodner
Marc Goodner

In this post we will walk through the new Visual Studio Code Embedded Tools extension. We'll show how to acquire embedded tool dependencies with vcpkg then edit, build, deploy, and debug an Azure RTOS ThreadX project highlighting the new peripheral register and RTOS object views.

embeddedNew FeatureIoT
Mar 1, 2022
1
0

Execution and Static Analysis Support for MSVC on Compiler Explorer

Sy Brand
Sy Brand

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
Feb 1, 2022
0
0

GSL 4.0.0 is Available Now

Dmitry Kobets
Dmitry Kobets

GSL 4.0.0 has been released! Here is a summary of the changes.

C++AnnouncementGeneral C++ Series
Jan 13, 2022
2
0

How we used C++20 to eliminate an entire class of runtime bugs

Cameron DaCamara
Cameron DaCamara

C++20 is here and has been supported in MSVC since 16.11, but today's post is not about how you can use it, but rather how we used it to effectively eliminate an entire class of runtime bugs by hoisting a check into compile-time. Let's get right into it! Humble beginnings In compiler design one of the very first things you need is a way to convey...

C++