Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why is this reference binding ill-formed?

c++ language-lawyer c++17

Do scalar members in a union count towards the common initial sequence?

Can placeholder type in non-type template parameter involve overload resolution of the function passed as a template argument?

Template type deduction according to constructor argument

c++17: header only: class static variable errors

Are fold expressions subject to short-circuiting?

Implementing rvalue references as parameters in function overloads

c++ c++11 c++17

vector must have the same value as its allocator

c++ c++17 gcc8

The std::filesystem::recursive_directory_iterator exception

c++ windows-10 c++17

C++17: Wrapping callable using generic variadic lambda

StateMachine with std::variant, getting the custom template deduction right

c++17 std-variant

Is VS picking the wrong specialisation? Why?

Why is the second parameter of std::assoc_laguerre an unsigned int?

Inserting into a vector of move-only type

c++ vector stl c++17

Most 'functional' way to sum pairs of elements from a vector using C++17 or later?

c++ c++17

Modifying captured parameters in nested lambda: gcc vs clang?

c++ gcc clang c++14 c++17

correct (or safest )way of initializing void pointer with non-zero value?

c++ c++17 void void-pointers

"No matching function for call" error when creating a vector of function variants

c++ c++17 variant

call of overloaded ‘<brace-enclosed initializer list>’ with suffices for pairs is ambiguous

c++ c++11 overloading c++17

Doesn't C++ mandate that (cond ? string_1 : string_2) initialize a string?

c++ c++17 language-lawyer