Posts by this author

Sep 26, 2023
5
7

C11 Threads in Visual Studio 2022 version 17.8 Preview 2

Back in Visual Studio 2022 version 17.5 Microsoft Visual C gained preliminary support for C11 atomics. We are happy to announce that support for the other major concurrency feature of C11, threads, is available in Visual Studio version 17.8 Preview 2. This should make it easier to port cross-platform C applications to Windows, without having to dra...

C++Announcement
Jun 9, 2021
28
0

<format> in Visual Studio 2019 version 16.10

C++20 adds a new text formatting facility to the standard library, designed primarily to replace and friends with a fast and type safe interface. The standardized library is based on the existing {fmt} library, so users of that library will feel at home. Before diving into how works I want to thank Victor Zverovich, Elnar Dakeshov, Casey Carte...

C++