Explore >> Select a destination


You are here

arne-mertz.de
| | blog.knatten.org
15.2 parsecs away

Travel
| | I'm at the ACCU 2013 conference, and this morning Bjarne Stroustrup held a keynote about C++11. One of his points was that full adoption of C++11 will take some time, due to compilers, libraries etc. lagging behind, but also due to many programmers not wanting to use new things in general. What can you do...
| | www.fluentcpp.com
11.3 parsecs away

Travel
| | There is a particular case for default parameters: it's when their type is a template type. Read on to see how to get this right.
| | www.foonathan.net
11.9 parsecs away

Travel
| | When C++11 introduced move semantics, it also added two important helper functions: std::move and std::forward. They are essential when you want to manually indicate that you no longer care about an object or need to propagate the value category in generic code. As such, Ive used them countless times in the past. However, they are functions. Plain, old, standard library functions. This is problematic for multiple reasons.
| | hackingcpp.com
79.7 parsecs away

Travel
| Basic techniques and tools for ensuring correctness: compiler warnings (gcc/clang/MSVC), assertions (assert/static_assert) and testing (with some doctest examples).