Showing results for June 2019 - C++ Team Blog

Jun 27, 2019
10
1

Simplify Your Code With Rocket Science: C++20’s Spaceship Operator

Cameron DaCamara
Cameron DaCamara

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 Cameron DaCamara. ...

C++ Q&A SeriesGeneral C++ Series
Jun 25, 2019
0
0

Cppp 2019 Trip Report

Sy Brand
Sy Brand

Summary CPPP is a new C++ conference in Paris, France. Its first iteration ran for a single day with three parallel tracks, drawing in 160 attendees. The conference great on all fronts: the speakers & talks were varied and high-quality, the venue was right next to the Eiffel Tower and had plenty of space, the food was tasty and varied (sh...

Trip Report
Jun 3, 2019
11
2

Clear, Functional C++ Documentation with Sphinx + Breathe + Doxygen + CMake

Sy Brand
Sy Brand

Writing good documentation is hard. Tools can’t solve this problem in themselves, but they can ease the pain. This post will show you how to use Sphinx to generate attractive, functional documentation for C++ libraries, supplied with information from Doxygen. We’ll also integrate this process into a CMake build system so that we have a unified work...

General C++ Series