Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Convert filesystem::path into char* on windows

c++ c++17

C++14 using alias for is_same::value

c++ templates helper c++14 c++17

Will there be standardization of scope guard/scope exit idioms?

c++ c++14 c++17 scopeguard

Should we still use classes or functions that require std::iterator if std::iterator is deprecated? [duplicate]

c++ for-loop iterator c++17

C++ How to insert a consecutive inter range into std::vector?

c++ c++17

How to pass a function template as a template argument?

"Empty base optimization" for lambda captures - forbidden by the Standard? Why?

c++ lambda c++17

Are all constexpr variable implicitly inline?

One liner for inserting some particular value of class object

c++ set c++14 std c++17

Usefulness of std::make_unique and std::make_shared in C++1z

c++ c++17

What does `operator()...` mean in code of C++?

[[maybe_unused]] attribute not working

c++ gcc cmake c++17

std::launder in conjunction with reinterpret_cast [duplicate]

c++ language-lawyer c++17

Copy on Write with shared_ptr

Is the constexpr specifier required on the declaration of a constexpr static member initialized outside of the class?

std::is_member_function_pointer not working for noexcept member functions

c++ c++17

Auto non-type template parameter: ambiguous partial specializations in Clang

c++ templates clang c++17 auto

Why do all C++ compilers crash or hang from this code?

c++ templates c++14 c++17

Why does copy initializaton require destructor in C++17 with guaranteed move/copy elision?