Explore >> Select a destination


You are here

danielsieger.com
| | cppstories.com
14.4 parsecs away

Travel
| | 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
10.9 parsecs away

Travel
| |
| | eyakubovich.github.io
15.0 parsecs away

Travel
| | 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
77.2 parsecs away

Travel
| A tutorial about WebAssembly and how to cross compile and run Go programs in the browser using WebAssembly.