Showing results for 2018 - Page 2 of 8 - C++ Team Blog

Nov 20, 2018
Post comments count0
Post likes count0

Q&A: Fine-grained friendship

Herb Sutter
Herb Sutter

This post is part of a regular series of posts where the C++ product team here at Microsoft answers questions we have received from customers. The questions can be about anything C++ related: Visual C++, the standard language and library, the C++ standards committee, isocpp.org, CppCon, etc. Today's Q&A is by Herb Sutter. Question Reader @the...

General C++ Series
Nov 7, 2018
Post comments count1
Post likes count0

Use the official range-v3 with MSVC 2017 version 15.9

Casey Carter
Casey Carter

We’re happy to announce that the ongoing conformance work in the MSVC compiler has reached a new milestone: support for Eric Niebler’s range-v3 library. It’s no longer necessary to use the range-v3-vs2015 fork that was introduced for MSVC 2015 Update 3 support; true upstream range-v3 is now usable directly with MSVC 2017. The last push to achiev...

Announcement
Nov 6, 2018
Post comments count1
Post likes count0

Exploring Clang Tooling Part 3: Rewriting Code with clang-tidy

Stephen Kelly
Stephen Kelly

In the previous post in this series, we used clang-query to examine the Abstract Syntax Tree of a simple source code file. Using clang-query, we can prototype an AST Matcher which we can use in a clang-tidy check to refactor code in bulk. This time, we will complete the rewriting of the source code. Let's return to MyFirstCheck.cpp we gen...

ClangGeneral C++ Series
Oct 23, 2018
Post comments count0
Post likes count1

Exploring Clang Tooling Part 2: Examining the Clang AST with clang-query

Stephen Kelly
Stephen Kelly

This post is part of a regular series of posts where the C++ product team and other guests answer questions we have received from customers. The questions can be about anything C++ related: MSVC toolset, the standard language and library, the C++ standards committee, isocpp.org, CppCon, etc. Today’s post is by guest author Stephen Kelly, who is ...

General C++ SeriesClang
Oct 19, 2018
Post comments count0
Post likes count1

Exploring Clang Tooling Part 1: Extending Clang-Tidy

Stephen Kelly
Stephen Kelly

This post is part of a regular series of posts where the C++ product team and other guests answer questions we have received from customers. The questions can be about anything C++ related: MSVC toolset, the standard language and library, the C++ standards committee, isocpp.org, CppCon, etc. Today’s post is by guest author Stephen Kelly, who is ...

General C++ SeriesClang
Oct 16, 2018
Post comments count0
Post likes count0

Standard Library Algorithms: Changes and Additions in C++17

Visual CPP Team
Visual CPP Team

Today we have a guest post from Marc Gregoire, Software Architect at Nikon Metrology and Microsoft MVP since 2007.   The C++14 standard already contains a wealth of different kinds of algorithms. C++17 adds a couple more algorithms and updates some existing ones. This article explains what’s new and what has changed in the C++17 Standard L...

General C++ Series
Oct 11, 2018
Post comments count0
Post likes count0

How to Use Class Template Argument Deduction

Stephan T. Lavavej - MSFT
Stephan T. Lavavej - MSFT

Class Template Argument Deduction (CTAD) is a C++17 Core Language feature that reduces code verbosity. C++17's Standard Library also supports CTAD, so after upgrading your toolset, you can take advantage of this new feature when using STL types like std::pair and std::vector. Class templates in other libraries and your own code will partially benef...

General C++ Series
Oct 4, 2018
Post comments count3
Post likes count0

std::any: How, when, and why

Casey Carter
Casey Carter

This post is part of a regular series of posts where the C++ product team here at Microsoft and other guests answer questions we have received from customers. The questions can be about anything C++ related: MSVC toolset, the standard language and library, the C++ standards committee, isocpp.org, CppCon, etc. Today’s post is by Casey Carter. C++...

General C++ Series
Oct 1, 2018
Post comments count0
Post likes count0

CUDA 10 is now available, with support for the latest Visual Studio 2017 versions

Ulzii Luvsanbat [MSFT]
Ulzii Luvsanbat [MSFT]

We are pleased to echo NVIDIA announcement for CUDA 10 today, and particularly excited about CUDA 10.0's Visual Studio compatibility. CUDA 10.0 will work with all the past and future updates of Visual Studio 2017. To stay committed to our promise for a Pain-free upgrade to any version of Visual Studio 2017, we partnered closely with NVIDIA for the ...

Announcement
Sep 26, 2018
Post comments count0
Post likes count0

Step Back – Going Back in C++ Time

Andy Sterland
Andy Sterland

Step Back for C++ In the most recent, 15.9, update to Visual Studio 2017 Enterprise Edition, we’ve added “Step Back” for C++ developers targeting Windows 10 Anniversary Update (1607) and later. With this feature, you can now return to a previous state while debugging without having to restart the entire process. It’s installed as part of the C++ w...

AnnouncementNew FeatureDiagnostics