Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

weak_ptr reset affects shared_ptr?

What is the correct result of decltype( (A{}.int_member) )?

Overload-Resolution: Is a direct conversion operator preferred (as a consequence of copy-elision)?

Does std::memcpy make its destination determinate?

Why does C++23 std::move_only_function not have deduction guides?

c++ c++17 std-function c++23

Should you be able move from std::optional<T> where T has non-trivial constructors?

c++ webkit c++17 optional

Why don't standard libraries implement std::atomic for structs under 8 bytes in a lock-free manner?

Object lifetime, in which situation is reused the storage?

Overloading structs with template call operator and generic lambdas - gcc vs clang

False-branch of if constexpr not discarded in templated lambda

Template template parameter and default values [duplicate]

g++ and clang++ different behaviour with template specialization for auto argument

Template argument deduction for an argument of a function type

Will std::experimental::optional<> support references?

Implementation of string_view formatted stream ouput

c++ c++17 string-view

Infinity not constexpr

c++ c++17

Using constexpr if instead of macros when writing platform dependent code?

c++ c++17

Copy/move elision requires explicit definition of copy/move constructors

Understand structured binding in C++17 by analogy

Why does `polymorphic_allocator` take a `memory_resource` pointer and not a reference?