Results summary: 2023 Annual C++ Developer Survey "Lite"
Over the past week, we ran our 2023 annual global C++ developer survey. Thank you to everyone who responded. As promised, here is a summary of the results:
CppDevSurvey-2023-summary.pdf
The results have now been forwarded to the C++ standards committee to help inform C++ evolution. Your feedback will be very helpful, and thank you again for your participation! Stay safe, everyone.

Optimizing compilers seek try to push as much of the computation as possible at compile time.
In my previous post I showed how to compile {fmt} as a C++20 module with clang. Although taking only two commands, ideally it’s not something you should be doing manually. So in this post, I’ll talk about module support in CMake, everyone’s favorite not a build system.
This post is an updated version of an article from five years ago, now that everything Sy talked about is in the standard and implemented in Visual Studio.