Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Compiling boost with MSVC2015 with /std:c++latest (or C++17/N4190)

Recursively visiting an `std::variant` using lambdas and fixed-point combinators

Is "template argument deduction for class templates" supposed to deduce empty parameter packs for variadic class templates?

I just can not understand DR 712

Standard way of getting a non-specialized std::vector<bool> container

c++ vector c++17

Replacing constants: when to use static constexpr and inline constexpr?

c++ constants c++17 constexpr

How to store self-removing futures in a list

c++ c++17 future

Discrepancy in C++ between over-aligned struct and enum within container

Is std::make_move_iterator redundant since C++17's class template argument deduction?

c++ iterator c++17

Why can't we change data pointer of std::vector?

c++ c++17 stdvector

How can this code be constexpr? (std::chrono)

c++ c++14 constexpr chrono c++17

Implementing std::variant converting constructor - or: how to find first overload of all conversions from any T to Ti from parameter pack

c++ sfinae c++17

Deduction guides and variadic class templates with variadic template constructors - mismatched argument pack lengths

Why does "if constexpr" not compile with Visual Studio 2017 15.3?

Automatically detect C++14 "return should use std::move" situation

Copy Elision for Returned Temporaries

c++ standards c++17

Using a constexpr static member of a reference as template argument

c++ language-lawyer c++17

How to return std::lock_guard in a std::pair

c++ c++17

Why does a lock_guard on a mutex reference produce C26110

c++ c++11 visual-c++ c++17 std

`std::any_cast` returns a copy

c++ c++17 stdany