Hacker News new | ask | show | jobs
by poly_morphis 1081 days ago
C++ 17 is the sweet spot for me. It has most of C++ 11/14, with many new features I use a ton: constexpr, <charconv>, <string_view>, [[maybe_unused]], new SFINAE feature (if constexpr), and more. (And this was considered a small release!?)

I guess I’m just right at home and therefore a bit reluctant to jump into C++20. That and the constantly changing “””correct way of doing things.”””

1 comments

If you use SFINAE that alone is reason to move to C++20, to get concepts instead.