Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

C++17 operator""s for string_view?

c++ c++17

How is P0522R0 breaking code?

Non-Movable C++17 Unique Pointer

c++ c++11 c++17 unique-ptr

Will I be able to declare a constexpr lambda inside a template parameter?

C++ auto on int16_t casts to integer

c++ c++17 auto decltype

difference between std::mutex and std::shared_mutex

c++ c++11 mutex c++17

c++1z dynamic exception specification error

Class with all automatically-generated constructors/operators deleted can still be returned from a function?