cpp_weekly
cpp_weekly copied to clipboard
The official C++ Weekly Repository. Code samples and notes of future / past episodes will land here at various times. PR's will be accepted in some cases.
**Channel** C++Weekly **Topics** As mentioned [here](https://www.youtube.com/watch?v=jOFrKN54M5g&list=TLPQMTUwODIwMjLHeAAMUBIC8Q&t=386s) by Jason, it would be interesting to hear about the usage of `noreturn` and `deprecated` attributes (and if you have time, maybe cover most,...
https://twitter.com/lefticus/status/1555202843032043522?s=20&t=SrnkkRW0pCbj5jWYqCQL4Q https://compiler-explorer.com/z/rhercYx18 https://twitter.com/lefticus/status/1555202843032043522?s=20&t=SrnkkRW0pCbj5jWYqCQL4Q
Looking for code that is "optimized away" but still leaves a performance hit.
**Channel** "C++Weekly" **Topics** How C++20 module affect the way we design libraries? Often libs are used to hide implementation details and dependencies. Now since Modules has accessibility permissions in the...
One new feature proposed in C23 (if I understand it correctly) is to allow zero initialization of stack variables with an empty set of braces. So 'struct node_t t1 {};'...