Opens profile photo
Follow
Click to Follow hackingcpp
hacking C++
@hackingcpp
Learn contemporary C++ with code examples, concise explanations, cheat sheets and infographics. #cpp #cplusplus #programming #learning #education
Germanyhackingcpp.comJoined March 2020

hacking C++’s Tweets

I'm announcing my first ever open-to-the public remote seminar: C++ Best Practices - Tooling eventbrite.com/e/c-best-pract Early bird tickets available! March 8, 1.5 hrs I hope to make training available to a larger group of people but in a way that works with my interactive style!
52
I have built a clang-tidy tool that will report on *all* implicit conversions that *might* be problematic. It's rather thorough. I've tested it on one of my own projects, with interesting results. Who would like to see their project tested with it in a live C++Weekly stream?
12
155
Ok C++ Twitter! You did an awesome job sharing all of your favorite closed source / for-pay tools last week. That time, share your favorite OPEN SOURCE and/or FREE C++ development tools! Let's help spread the word on these awesome tools!
94
312
💁‍♂️ C++ tip: While it's tempting to inline (or "= default") constructors and destructors in header files, putting them out-of-line instead often allows you to #include fewer things in these headers. And you can still use "= default" out-of-line: Foo::Foo() = default; 🤓👍
10
142
That seems to be a really nifty tool for taking timing measurements. Haven't run into any issues so far. Statistical analysis across multiple runs, warmup, cache-clearing, outlier detection, parameterized benchmarks, etc. github.com/sharkdp/hyperf #programming #benchmarking
1
22