Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Return std::tuple and move semantics / copy elision

c++ c++17 move-semantics

Why is implicit conversion not ambiguous for non-primitive types?

How to correctly create std::string from a std::string_view?

Does boost::any / std::any store small objects in-place?

c++ boost c++17

How to restore auto_ptr in Visual Studio C++17

Why ADL does not resolve to the correct function with std::get

Using QString as the key in std::unordered_map

c++ qt c++17 stdhash

Significance of trivial destruction

c++ destructor c++17

std::optional::value_or() - lazy argument evaluation

c++ stl c++17 stdoptional

Why does my variant convert a std::string to a bool?

c++ c++17 variant

Should I use if unlikely for hard crashing errors?

c++ gcc c++17 likely-unlikely

Why do boost::filesystem::path and std::filesystem::path lack operator+?

c++ c++17 boost-filesystem

Variadic template only compiles when forward declared

Is this a bug? Constexpr constructor silently becomes non-constexpr

c++ language-lawyer c++17

Will 'Guaranteed Copy Elision' (P0135, C++1z) potentially require ABI breakage?

Is this a bug in std::gcd?

Do the multiple postfix-expression(subscripting) evaluations result in UB

c++ c++17 language-lawyer

Will std::optional be a trivially copyable type if the contained type is a trivially copyable type

c++ c++17

Variadic deduction guide not taken by g++, taken by clang++ - who is correct?

Why can a strongly-typed enum be initialized with an integer without static_cast?