C++ Insights Episode 63: Faster C++ Builds: Optimize Templates for Speed
https://andreasfertig.com/blog/2025/06/cpp-insights-episode-63-faster-cpp-builds-optimize-templates-for-speed/
#cpp
#cplusplus
C++ Insights Episode 63: Faster C++ Builds: Optimize Templates for Speed
https://andreasfertig.com/blog/2025/06/cpp-insights-episode-63-faster-cpp-builds-optimize-templates-for-speed/
#cpp
#cplusplus
Variadic class template arguments
https://www.sandordargo.com/blog/2025/06/18/variadic-inheritance
#cpp
#cplusplus
#CppPollOfToday: Would you recommend your current workplace to a fellow C++ programmer?
https://meetingcpp.com/mcpp/survey/?q=45
#cplusplus
#cpp
Writing a helper class for generating a particular category of C callback wrappers around C++ methods
https://devblogs.microsoft.com/oldnewthing/20250616-00/?p=111271
#cpp
#cplusplus
Say, is there a trick in C++ to make to_string() work for any type?
If I have
using namespace std;
and then just write
to_string(foo)
it will prefer my local namespace's to_string(MyClass) and error when given an int, instead of picking std::to_string(int) for those.
Do I really have to add all variants of
inline string to_string(int n) { return std::to_string(n); }
to my namespace to be able to just say to_string(foo) for any type and make it work?
Book of the Day: Data Structures and Algorithms with the C++ STL: A guide for modern C++ practitioners by John Farrier
https://meetingcpp.com/mcpp/books/book.php?hash=6fbd81674112043be13241deeb9f4af9a78ba232
#cplusplus
#cpp
C++ Weekly - Ep 485 - Variadic Structured Bindings in C++26
https://www.youtube.com/watch?v=qIDFyhtUMnQ
#cpp
#cplusplus
#CppPollOfToday: Have or will you be upgrading to a newer C++ standard in the last/coming year?
https://meetingcpp.com/mcpp/survey/?q=64
#cplusplus
#cpp
Announcing the 3rd Keynote for Meeting C++ 2025!
https://www.meetingcpp.com/meetingcpp/news/items/Announcing-the-3rd-Keynote-for-Meeting-Cpp-2025-.html
#cpp
#cplusplus
c/c++ devs of fediverse, what does your debugging workflow look like? I've used gdb manually a bit but it's quite laborious to set up each session. I need to be able to do step-through debugging with variable inspection.
[VS]Code and studio are very good for step through debugging once they're set up, but I'd rather avoid them altogether if possible, especially since you have to jump through a series of flaming hoops to get c debugging working in the non-telemetry open source version of code.
Any/all suggestions appreciated, other than 'use rust' #programming #clang #cpp
LLVM Code Generation - Book Review with Author Quentin Colombet
https://www.youtube.com/watch?v=vgXR9sHIUiM
#cpp
#cplusplus
#CppPollOfToday: In which industry fields have you worked as a C++ dev?
https://meetingcpp.com/mcpp/survey/?q=81
#cplusplus
#cpp
Book of the Day: Modern C++ for Absolute Beginners: A Friendly Introduction to the C++ Programming Language and C++11 to C++23 Standards 2nd Edition by Slobodan Dmitrović
https://meetingcpp.com/mcpp/books/book.php?hash=1b684cbeaf31e20aeb11a38ecf609a98c18275e6
#cplusplus
#cpp
C2y: Hitting the Ground Running
https://thephd.dev/c2y-hitting-the-ground-running
#cpp
#cplusplus