Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Does an in-class friend of a nested class have access to outer class members?

Expanding parameter pack as part of lambda capture in fold expression - gcc vs clang [duplicate]

C++17 Partial Deduction Guide

Why Sortable concept requires totally ordered value type, while std::sort only requires "less than" comparable?

c++ c++17 c++-concepts

Trouble with storing a type tag when implementing an std::variant-like class

c++ templates variant c++17

Avoiding extra move in make_unique/make_shared/emplace/etc for structures that use aggregate initialization

c++ c++17

When is std::string_view::operator== really constexpr?

c++ gcc c++17 libc++

Can constructor template cause ambiguity in the c++17 parameter deduction of class template

Union of layout-compatible types

Is a lambda in a default template parameter considered part of the immediate context?

c++ language-lawyer c++17

Can I use std::transform in place with a parallel execution policy?

Is GCC9 avoiding valueless state of std::variant allowed?

Redefinitions of constexpr static data members are allowed now? (but not inline const)?

c++ c++14 c++17

Can std::launder be used to convert an object pointer to its enclosing array pointer?

c++ language-lawyer c++17

Injected class name as type

c++ language-lawyer c++17

Can I still rely on the order of the output elements when using par_unseq?

Is difference of two constexpr instances of __func__ pointers still constexpr?

Move constructor called twice when move-constructing a std::function from a lambda that has by-value captures

incomplete types with std::map and std::variant

Deduction guides, templates and subobjects: which compiler is right?