Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

lambda with conversion function to pointer to function with c++ linkage

c++ c++11 lambda c++17

Why automatic type inference from the initialization list doesn't work in the constructor?

c++ c++17 type-deduction

Is it legal to initialize an array via a functor which takes the array itself as a parameter by reference?

How to report this ICE for gcc-trunk

c++ gcc c++17 bug-reporting

Is there a short way to check if parameter pack doesn't contain types repetition? [duplicate]

C++ sequence points and changes to evaluation order in C++17 [duplicate]

How would a std::optional<std::nullopt_t> operate?

c++ c++17 stdoptional

A byte type: std::byte vs std::uint8_t vs unsigned char vs char vs std::bitset<8>

c++ c++17 byte std-byte

Initialization of std::atomic before and after C++20

c++ c++17 atomic c++20

How to use fold expression to instantiate each type in a variadic template function?

C++: using declaration and overload paradigm

c++ c++17 overloading

How do I create specializations of alias templates using class template specialization?

Why doesn't std::is_invocable accept a non type template parameter

c++ templates c++17 non-type

What are the consequences of a throwing swap() for a type?

c++ c++17 swap

Recalling the previous value of a variable?

c++ c++17