Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

C++17 conditional (ternary) operator inconsistency between MSVC and Clang/GCC

Returning variadic aggregates (struct) and syntax for C++17 variadic template 'construction deduction guide'

c++ templates c++17

Is the "laundry" propagated by pointer arithmetic?

Anonymous temporaries and class template argument deduction - gcc vs clang

Should I be worried about Wmissing-field-initializers and aggregate initialization in C++17?

Template Argument Deduction Broken in Clang 6 for Temporary Objects

Template non-type parameter deduction

Does gcc 6 support the use of std::sample (c++17)?

c++ gcc c++17 gcc6

Why does std::filesystem::path::append replace the current path if p starts with root path

c++ c++17 boost-filesystem

Can I define a constexpr anonymous/unnamed variable?

std::map, std::unordered_map - narrowing conversion in initializer list

c++ c++17 stdmap

Why does '[[fallthrough]]' need the square brackets '[[]]'?

c++ c++17

Why is a cast operator to std::optional ignored?

Variant visitation and common_type

c++ c++17 variant

std::function has performances issues, how to avoid it?

generating calls to lambdas with arbitrary number of parameters

Constexpr counter that works on GCC 8, and is not restricted to namespace scope

Is decltype of a non-static member function ill-formed?

Constexpr constructor fails to satisfy the requirements, but still constexpr. Why?

c++ language-lawyer c++17

if constexpr vs sfinae

c++ c++17 sfinae