Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why is std::shared_ptr::unique() deprecated?

Handling gcc's noexcept-type warning

c++ g++ c++17 noexcept gcc7

CppCon 2018, Nicolai Josuttis: Why are these interpreted as iterators?

c++ initialization c++17

How to enable C++17 support in VSCode C++ Extension

Is it possible to test if a constexpr function is evaluated at compile time?

Why shared_timed_mutex is defined in c++14, but shared_mutex in c++17?

c++ c++14 std c++17

Declaring defaulted assignment operator as constexpr: which compiler is right?

Why doesn't "auto ch = unsigned char{'p'}" compile under C++ 17?

Class template argument deduction not working with alias template

c++ c++17

What is std::invoke in c++? [closed]

c++ c++17

std::is_invocable is false but std::invoke works

c++ c++17

How to compare the signature of two functions?

Modifying a global variable in a constexpr function in C++17

With C++17 is it possible to detect if a struct/class has any base?

Do we still need to write the empty angle brackets when using transparent std function objects?

Difference between C++14 and C++17 using: `*p++ = *p`

c++ c++14 c++17

How to initialize C++17 vector of pairs with optional element

Is delete allowed to modify its parameter?

c++ language-lawyer c++17

Why can this derived class be constructed with `{}` and not with `()` on C++17?

c++ c++17

Confusing templates in C++17 example of std::visit