Showing archive results for 2023

Apr 24, 2023
Post comments count0
Post likes count0

Fill in the ISO C++ Developer Survey

Sy Brand

The ISO C++ developer survey runs every year and is a great help to us in prioritizing work based on what the community cares about. It only takes about 10 minutes to complete and closes tomorrow, so please take the time to fill it out.  

C++Announcement
Apr 22, 2023
Post comments count2
Post likes count4

vcpkg 2023.04.15 Release: vcpkg ships in Visual Studio, Xbox triplets, GitHub Actions Cache Support, and More…

Augustin Popa

The 2023.04.15 release of the vcpkg package manager is available. This blog post summarizes changes from February 25th, 2023 to April 15th, 2023 for the Microsoft/vcpkg, Microsoft/vcpkg-tool, and Microsoft/vcpkg-docs GitHub repos. Some stats for this period:   Notable Changes vcpkg now included with Visual Studio ...

C++Vcpkg
Apr 13, 2023
Post comments count5
Post likes count2

Even faster builds with Incredibuild 10 and Visual Studio 17.6 Preview 3

Michael Price

Note: This post was co-authored with Incredibuild's Director of Product Marketing, Yohai West. We are pleased to announce that Visual Studio version 17.6 Preview 3 includes Incredibuild's most advanced developer acceleration platform: Incredibuild 10. This release includes several notable, new features that empower teams to speed up the developm...

AnnouncementC++Game Development
Apr 13, 2023
Post comments count6
Post likes count11

C++23’s New Fold Algorithms

Sy Brand

New fold algorithms in C++23, what they do, how to use them.

C++
Mar 29, 2023
Post comments count3
Post likes count3

Maximize Unreal Engine Development with the Latest Integrations in Visual Studio 2022

David Li

Introduction Since our announcement last month, the team has been working hard on building a new round of Unreal Engine integrations. Today, we are happy to show you the next set of features that can level up your game development productivity. In this article, you will learn about how to stream Unreal Logs, see Unreal Header Tool warnings in ...

Game DevelopmentC++Announcement
Mar 28, 2023
Post comments count3
Post likes count2

Create C++ Member Function in Visual Studio

Mryam Girmay

We are excited to announce that Create C++ Member Function can now be used to quickly add constructor and equality operator (operator ==) in Visual Studio 17.6 Preview 2. When you have a class with fields, you can add a default constructor, constructor with all fields, equality operator, and equality operator with all fields easily. Three do...

C++Game Development
Mar 6, 2023
Post comments count1
Post likes count0

vcpkg 2023.02.24 Release: Default Triplet Changes, RISC-V support, Bug Fixes, and More…

Augustin Popa

The 2023.02.24 release of the vcpkg package manager is available. This blog post summarizes changes from January 10th, 2023 to February 24th, 2023 for the Microsoft/vcpkg, Microsoft/vcpkg-tool, and Microsoft/vcpkg-docs GitHub repos. Some stats for this period:   Notable Changes Notable changes for this release are...

C++Vcpkg
Mar 6, 2023
Post comments count2
Post likes count1

std::string now supports Address Sanitizer

Nicole Mazzuca

The standard library now checks for more incorrect usage using the ASan "container overflow" feature in `std::string`.

C++New Feature