|
You are here |
danielsieger.com | ||
| | | | |
cppstories.com
|
|
| | | | | Let's say we have the following code: LegacyList* pMyList = new LegacyList(); ... pMyList->ReleaseElements(); delete pMyList; In order to fully delete an object we need to do some additional action. How to make it more C++11? How to use unique_ptr or shared_ptr here? Intro We all know that smart pointers are really nice things and we should be using them instead of raw new and delete. | |
| | | | |
philjordan.eu
|
|
| | | | | ||
| | | | |
eyakubovich.github.io
|
|
| | | | | The Google Style Guide (GSG) for C++ has become popular outside of just Google. But I don't like it at all. There... I said it. Now I want to take this opportunity to explain why I feel so strongly about it. GSG "style" The general observation is that the style... | |
| | | | |
golangbot.com
|
|
| | | A tutorial about WebAssembly and how to cross compile and run Go programs in the browser using WebAssembly. | ||