Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

MSVC++: template's static_assert is not triggered inside a lambda

c++ visual-c++ c++17

Is it legal to use an operator in a fold expression that was introduced by a using declaration?

What is the equivalent of cast for concepts?

c++ c++17 c++-concepts

Accessing member type with `if constexpr` inside generic lambda requires both branches to be well-formed - gcc vs clang

Must a c++ interface obey the rule of five?

Why introduce `std::launder` rather than have the compiler take care of it?

Stripping all qualifiers from a function type

c++ templates c++11 c++14 c++17

Using const std::unique_ptr for pimpl idiom

c++ c++11 c++17

Determine whether a constructor of an abstract base class is noexcept?

c++ c++11 c++14 c++17 noexcept

Why does as_const forbid rvalue arguments?

c++ rvalue c++17

Is std::initializer_list{x, y, z} (CTAD) valid?

c++ language-lawyer c++17

What changes to C++ made copy initialization work for class with explicit constructor?

Why is "inline" required on static inline variables?

c++ inline c++17

Explicit default constructors in C++17

Is it safe to link gcc 6, gcc 7, and gcc 8 objects?

c++ gcc c++17

What are "terse ranged-based for loops"?

c++ c++17

How do I use the new C++17 execution policies? [duplicate]

C++ standard: do namespace-scoped constexpr variables have internal linkage?

How can a compiler deduce this class template with forwarding reference?

Best way to use emplace_back to avoid move constructor call?

c++ c++11 c++17 emplace