Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Is C++17 std::shared_mutex not available yet?

c++ mutex libstdc++ c++17 gcc5

When do I use node_type with std::map::insert?

How to use lambda as template argument with default value in C++? [duplicate]

c++ lambda c++17

Can `if constexpr` be used to declare variables with different types and init-expr

Defining global constants in C++1z?

c++ constants c++17

Incomplete types as function parameters and return values

Are structured bindings reusable?

MSVC constexpr function 'xyz' cannot result in a constant expression

c++ visual-c++ c++17

Unqualified sort() -- why does it compile when used on std::vector and not on std::array, and which compiler is correct?

c++ c++17

C++ variant converting constructor with bool

c++ c++17 c++20

Is it possible to insert extra operation in fold expression?

Is there any advantage in using std::optional to avoid default arguments in a function?

c++ c++11 c++17 stdoptional

Do we have auto array in c++17?

c++ c++17

Why GCC rejects std::optional for references?

c++ gcc reference optional c++17

Target requires the language dialect "CXX17" (with compiler extensions), but CMake does not know the compile flags to use to enable it

c++ cmake c++17

Pass pointer to temporary in c++ 11?

Are dynamic exception specifications invalid in c++17?

c++ exception c++17

How to force class template argument deduction when constructing a class in its own member functions?

c++ c++17

Does C++ have a free function `size(object)`?

Can I extend variant in C++?