The Daily C++
1.83K subscribers
10 photos
2 files
596 links
The best channel about C++ News!
Every day a lot of news!

Send your project/repo/guide/tutorial to @dailycppbot
Download Telegram
Tags: #gdb #debug

http://www.viva64.com/en/b/0430/#ID0EYBAE

GDB is a tool that is hard to live without. Of course, as Brooks says: "The quality in software development is achieved through proper design, not by endless testing".
Tags: #stl #memoryusage

http://lemire.me/blog/2016/09/15/the-memory-usage-of-stl-containers-can-be-surprising/

"One of the benefits of C++ is the built-in STL containers offering the standard data structures like vector, list, map, set. They are clean, well tested and well documented."
Tags: #universal #forwarding #reference #type
https://blog.petrzemek.net/2016/09/17/universal-vs-forwarding-references-in-cpp/

"When talking about T&& in C++, you may have heard about universal references and forwarding references."
Tags: #refiningconcepts #constraints

http://honermann.net/blog/2016/09/18/refining-concepts-separate-checking-part-1-relaxing-constraints/

" I’ll be discussing about separate checking of constrained template definitions."
Tags: #cpp19 #string_view

"std::string is the standard way of working with strings in C++, and offers a lot of convenient functionality for working with strings, such as comparison, searching for substrings, concatenating, slicing, etc."
https://skebanga.github.io/string-view/