Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why does aggregate initialization not work anymore since C++20 if a constructor is explicitly defaulted or deleted?

Local reference to std::cout captured by lambda without asking for it

How to check if a pointer points to a properly aligned memory location?

std::function with noexcept in C++17

c++ function c++17 noexcept

How to make a safer C++ variant visitor, similar to switch statements?

Access to constexpr variable inside lambda expression without capturing

Why does returning a std::optional sometimes move and sometimes copy?

Is there a reason to use std::conjunction/std::disjunction instead of a fold expression over "&&"/"||"?

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?